.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    text-align: center;
    padding: 2rem;
    background: whitesmoke;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.company-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3498db, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.accent-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #f39c12);
    margin: 1rem auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .logo-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 1.8rem;
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
