.page-container {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom, #211A52, #0471A6);
    display: flex;
    flex-direction: column;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 4rem;
}

.hero-content {
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff;

}

.subtitle {
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 1px;
    color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .hero-section {
        padding: 1rem;
    }
}