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

.project-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.page-title-wrapper {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    text-align: center;
    color: white;
    padding: 2rem;
}

.page-title-content {
    max-width: 1200px;
    color: #ffffff;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.6;
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
    .project-container {
        padding: 0;
    }

    .page-title {
        font-size: 2.5rem;
        color: #ffffff;
    }

    .page-subtitle {
        font-size: 1rem;
        color: #ffffff;
    }
}