/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mission Callout Section */
.mission-callout {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #228B22 0%, #20B2AA 100%);
    margin-top: 80px; /* Account for header */
    color: white;
}

.mission-callout-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-callout-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    line-height: 1.2;
}

.mission-callout-text {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: white;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    text-align: left;
}

.mission-text p {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.team-member:hover .team-member-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-member-info {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-member-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.team-member-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #228B22;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-description {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background: #f8f9fa;
}

.awards-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(34, 139, 200, 0.08);
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 139, 200, 0.15);
}

.award-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.award-icon {
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.award-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    flex-grow: 1;
}

.award-year {
    background: #228B22;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.award-category {
    font-size: 18px;
    font-weight: 600;
    color: #228B22;
    margin: 0 0 10px 0;
}

.award-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.award-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.award-details p {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.award-details p:last-child {
    margin-bottom: 0;
}

.award-details strong {
    color: #333;
    font-weight: 600;
}

.award-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #228B22;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.award-link:hover {
    background: #1a6b1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

.award-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto 20px 0;
    box-shadow: 0 2px 12px rgba(34, 139, 200, 0.10);
}

.award-achievements {
    flex-grow: 1;
}

.testimonial {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid #228B22;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.1);
    border-left-color: #20B2AA;
}

.testimonial-quote {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 60px;
    color: #228B22;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #228B22;
    text-align: right;
    display: block;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mission-callout {
        padding: 100px 0 60px 0;
        margin-top: 60px;
    }
    
    .mission-callout-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .mission-callout-text {
        font-size: 18px;
    }
    
    .mission {
        padding: 60px 0;
    }
    
    .mission-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .team {
        padding: 60px 0;
    }
    
    .team-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member-image {
        height: 200px;
    }
    
    .team-member-info {
        padding: 25px 20px;
    }
    
    .team-member-name {
        font-size: 22px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial {
        padding: 30px 25px;
    }
    
    .awards {
        padding: 60px 0;
    }
    
    .awards-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .awards-grid {
        gap: 25px;
    }
    
    .award-card {
        padding: 25px 20px;
    }
    
    .award-header {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .award-name {
        font-size: 20px;
    }
    
    .award-icon {
        font-size: 28px;
    }
    
    .award-year {
        font-size: 12px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .mission-callout {
        padding: 80px 0 40px 0;
        margin-top: 40px;
    }
    
    .mission-callout-title {
        font-size: 28px;
    }
    
    .mission-callout-text {
        font-size: 16px;
    }
    
    .mission {
        padding: 40px 0;
    }
    
    .mission-text p {
        font-size: 15px;
    }
    
    .team {
        padding: 40px 0;
    }
    
    .team-title {
        font-size: 28px;
    }
    
    .team-member-image {
        height: 180px;
    }
    
    .team-member-info {
        padding: 20px 15px;
    }
    
    .team-member-name {
        font-size: 20px;
    }
    
    .team-member-title {
        font-size: 14px;
    }
    
    .team-member-description {
        font-size: 15px;
    }
    
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonial {
        padding: 25px 20px;
    }
    
    .testimonial-quote {
        font-size: 15px;
    }
    
    .testimonial-author {
        font-size: 13px;
    }
    
    .awards {
        padding: 40px 0;
    }
    
    .awards-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .award-card {
        padding: 20px 15px;
    }
    
    .award-header {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .award-name {
        font-size: 18px;
    }
    
    .award-icon {
        font-size: 24px;
    }
    
    .award-year {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .award-category {
        font-size: 16px;
    }
    
    .award-description {
        font-size: 14px;
    }
    
    .award-details {
        padding: 12px;
    }
    
    .award-details p {
        font-size: 13px;
    }
    
    .award-link {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .award-image {
        max-width: 150px;
    }
}

/* Special styles for compact grid layout on larger screens */
@media (min-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-member {
        min-height: 450px;
    }
    
    .team-member-image {
        height: 200px;
    }
    
    .team-member-info {
        padding: 25px 20px;
    }
    
    .team-member-name {
        font-size: 20px;
    }
    
    .team-member-title {
        font-size: 14px;
    }
    
    .team-member-description {
        font-size: 16px;
        line-height: 1.5;
    }
}

.award-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.award-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    color: #222;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 1.5em;
}
.award-list li::before {
    content: '';
    display: inline-block;
    width: 0.6em;
    height: 0.6em;
    background: #00853e;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.7em;
}
.award-label {
    color: #00853e;
    font-weight: bold;
    min-width: 9.5em;
    display: inline-block;
}
.award-desc {
    color: #222;
    font-weight: normal;
    display: inline;
}
