/* Custom Hero Section Enhancements */

/* Improved spacing and styling for hero section */
.hero-section {
    position: relative;
    min-height: 700px;
    background-color: var(--yellow-bg);
    color: #ffeb3b;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

/* Director quote styling with improved spacing */
.director-quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.3;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 235, 59, 0.3);
    color: white;
    display: flex;
    flex-direction: column;
}

.quote-attribution {
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: right;
}

/* Enlarged tagline with dramatic size increase */
.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 235, 59, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Redesigned Our Roles section */
.what-we-offer {
    display: flex;
    background-color: rgba(0, 35, 102, 0.7);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.what-we-offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 40px;
    padding-right: 40px;
    border-right: 2px solid rgba(255, 235, 59, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;
    min-width: 200px;
}

.what-we-offer-list {
    flex-grow: 1;
}

.what-we-offer-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

.what-we-offer-list li {
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.what-we-offer-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffeb3b;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.8rem;
    }
    
    .what-we-offer {
        flex-direction: column;
    }
    
    .what-we-offer-title {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid rgba(255, 235, 59, 0.5);
        padding-bottom: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .what-we-offer-list ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.2rem;
    }
    
    .director-quote {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 1.8rem;
    }
    
    .director-quote {
        font-size: 1.1rem;
    }
    
    .what-we-offer-title {
        font-size: 1.5rem;
    }
    
    .what-we-offer-list li {
        font-size: 1rem;
    }
}
