/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 100%;
}

/* Logo styling */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Title styling */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FF7F00; /* Orange color */
}

/* Description styling */
.description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button/link styling */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #FF7F00; /* Orange color */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 127, 0, 0.2);
}

.cta-button:hover {
    background-color: #E67300; /* Darker orange */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(255, 127, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 127, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
    }
}