/* mawaan-changian-development-centre.css - specific styles for the MCD page */

/* Banner Styles */
.mcd-banner {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
}

.mcd-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Welcome Section Styles */
.mcd-welcome-section {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
}

.mcd-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3C72;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.2;
}

.mcd-content {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.mcd-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    margin-bottom: 0;
}

.mcd-logo-container {
    text-align: center;
    margin-top: 3rem;
}

.mcd-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .mcd-title {
        font-size: 2.25rem;
    }
    
    .mcd-text {
        font-size: 1.05rem;
    }
    
    .mcd-logo {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .mcd-welcome-section {
        padding: 3rem 0;
    }
    
    .mcd-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .mcd-content {
        margin: 0 auto 2.5rem;
    }
    
    .mcd-text {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .mcd-logo {
        max-width: 300px;
    }
    
    .mcd-logo-container {
        margin-top: 2.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .mcd-welcome-section {
        padding: 2.5rem 0;
    }
    
    .mcd-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .mcd-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .mcd-logo {
        max-width: 250px;
    }
    
    .mcd-logo-container {
        margin-top: 2rem;
    }
}