/* EMERGENCY OVERFLOW FIX */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    position: relative;
}

* {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

img, video, iframe {
    max-width: 100% !important;
    height: auto !important;
}

/* Force hero sections to be contained */
.hero, .about-hero, .contact-hero, .members-hero {
    width: calc(100% - 4rem) !important;
    max-width: calc(100% - 4rem) !important;
    margin: 2rem auto !important;
    overflow: hidden !important;
}

/* Force grid containers to be contained */
.pillars-grid, .program-item, .members-grid, .vision-mission-cards {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

body {
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #ffffff;
    background-color: #cfb997;
    padding-top: 80px;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background: #004526;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

/* Navigation links container - right side */
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* Remove visited link styling */
.nav-links a:visited {
    color: white;
}

/* Hover effect for navigation links */
.nav-links a:hover {
    background-color: #FF8C00;
    color: white;
    transform: translateY(-2px);
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Button */
.dropbtn {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

/* Dropdown Icon */
.dropbtn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #cccccc;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1002;
    border-radius: 5px;
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 0.8rem 1rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #FF8C00;
    color: white;
    padding-left: 1.5rem;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Rotate dropdown icon on hover */
.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

/* Dropdown button hover effect */
.dropbtn:hover {
    background-color: #FF8C00;
    color: white;
}

/* Logo specific styling */
.logo-link {
    display: flex;
    align-items: center;
}

/* Footer Styles */
footer {
    background: #004526;
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    box-sizing: border-box;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

/* Specific heading styles */
h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

/* Hero Sections */
.hero, .about-hero, .contact-hero, .members-hero {
    background: #FF8C00;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin: 2rem auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    width: calc(100% - 4rem);
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.hero h1, .about-hero h1, .contact-hero h1, .members-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p, .about-hero p, .contact-hero p, .members-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Pillars Section */
.pillars {
    max-width: 1200px;
    width: 100%;
    margin: 4rem auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.pillars h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Pillars Grid Container */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

/* Individual Pillar Box */
.pillar {
    background: #f5f5f5;
    border: 3px solid #FF8C00;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

/* Pillar Hover Effect */
.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: #f0f0f0;
}

/* Pillar Title */
.pillar h3 {
    color: #004526;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    padding: 0 0.5rem;
    word-wrap: break-word;
}

/* Pillar Text */
.pillar p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    word-wrap: break-word;
}

.pillar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Ensure all boxes are same height */
.pillars-grid {
    align-items: stretch;
}

/* What We Offer - Programs Section */
.programs {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.programs h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Programs Grid Container */
.program-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
}

/* Program Content Boxes */
.program-content {
    background: #f5f5f5;
    border: 3px solid #FF8C00;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Program Heading */
.program-content h3 {
    color: #004526;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    word-wrap: break-word;
}

/* Program Text */
.program-content p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    flex-grow: 1;
    word-wrap: break-word;
}

/* Hover Effect */
.program-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #FF8C00;
    background: #ffffff;
}

/* About Us Page Styles */

/* Story Section */
.story-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem auto 3rem;
    max-width: 1200px;
    width: calc(100% - 4rem);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #004526;
    box-sizing: border-box;
}

.story-section p {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

/* Quote Styling */
.quote {
    background: #f8f9fa;
    border-left: 4px solid #FF8C00;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    width: 100%;
    box-sizing: border-box;
}

.quote p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #004526;
    margin-bottom: 0.5rem;
    font-weight: 500;
    word-wrap: break-word;
}

.quote .author {
    font-size: 1rem;
    color: #666;
    font-style: normal;
    text-align: right;
    margin-bottom: 0;
}

/* Vision & Mission Cards Container */
.vision-mission-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Vision & Mission Cards */
.vision-card, .mission-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 5px solid #FF8C00;
    width: 100%;
    box-sizing: border-box;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.vision-card h2, .mission-card h2 {
    color: #004526;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    word-wrap: break-word;
}

.vision-card p, .mission-card p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    word-wrap: break-word;
}

/* Mission Card Special Styling */
.mission-card {
    border-top-color: #004526;
}

/* Contact Page Styles */
.contact-info-section {
    max-width: 1200px;
    width: 100%;
    margin: 3rem auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.contact-info-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Contact Info Container */
.contact-info {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #004526;
    width: 100%;
    box-sizing: border-box;
}

/* Contact Method Layout */
.contact-method {
    margin-bottom: 2.5rem;
    width: 100%;
}

/* ============================================
   CONTACT PAGE - EMAIL & CALL
   ============================================ */

/* Contact methods row layout */
.contact-methods-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    width: 100%;
}

/* Individual contact method in row */
.contact-methods-row .contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0;
    padding: 0.5rem 1.5rem;
    background: #f8f9fa;
    border-radius: 50px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-methods-row .contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 69, 38, 0.1);
    border-color: #FF8C00;
}

/* Contact method icons */
.contact-methods-row .contact-method i {
    color: #FF8C00;
    font-size: 1.5rem;
    margin-right: 0;
}

/* Contact method links */
.contact-methods-row .contact-method a {
    color: #004526;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-methods-row .contact-method a:hover {
    color: #FF8C00;
}

/* Social section styling */
.contact-method.social-section {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    width: 100%;
}

.contact-method.social-section h3 {
    color: #004526;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #FF8C00;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* ============================================
   RESPONSIVE FIXES FOR CONTACT PAGE
   ============================================ */

/* Tablet */
@media screen and (max-width: 1024px) {
    .contact-methods-row {
        gap: 2rem;
    }
    
    .contact-methods-row .contact-method {
        padding: 0.5rem 1.2rem;
    }
    
    .contact-methods-row .contact-method a {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    .contact-methods-row {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 0;
    }
    
    .contact-methods-row .contact-method {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }
    
    .contact-methods-row .contact-method a {
        font-size: 1.1rem;
    }
    
    .contact-method.social-section h3 {
        font-size: 1.5rem;
    }
}

/* Small mobile */
@media screen and (max-width: 480px) {
    .contact-methods-row .contact-method {
        padding: 0.7rem;
    }
    
    .contact-methods-row .contact-method a {
        font-size: 1rem;
    }
    
    .contact-methods-row .contact-method i {
        font-size: 1.3rem;
    }
}

/* Email and Phone Icons */
.contact-method .fi {
    color: #FF8C00;
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

/* Social Media Section */
.contact-method h3 {
    color: #004526;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    word-wrap: break-word;
}

/* Social Links Box - Horizontal */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Individual Social Links */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #004526, #006d3a);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fi-brands-tiktok:before {
    content: "\f174"; /* TikTok Unicode character */
    font-family: "uicons-brands";
}

/* Ensure all social icons are properly centered */
.social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: inherit;
}

/* Social Icon Hover Effects */
.social-link:hover {
    background: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px rgba(255, 140, 0, 0.3);
}

/* Contact Note */
.contact-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Members Section */
.members-section {
    max-width: 1200px;
    width: 100%;
    margin: 4rem auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Members Hero */
.members-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.members-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on big screens */
    gap: 2.5rem;
    margin-top: 2rem;
    width: 100%;
}

/* Member Card */
.member-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-top: 5px solid #004526;
    width: 100%;
    box-sizing: border-box;
}

/* Circular Member Image */
.member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 5px solid #004526;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Member Info */
.member-info {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.member-info h3 {
    color: #004526;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    min-height: auto;
    word-wrap: break-word;
}

.member-role {
    color: #FF8C00;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.member-bio {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    word-wrap: break-word;
}

/* ============================================
   MOBILE HEADER STYLES
   ============================================ */

/* Mobile-specific header styles */
@media screen and (max-width: 767px) {
    header {
        transition: transform 0.3s ease-in-out;
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    .header-container {
        padding: 0.5rem 1rem;
        height: 100%;
        flex-direction: row;
        gap: 1rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-link img {
        width: 60px;
        height: auto;
    }
    
    .nav-links {
        width: auto;
        gap: 0.5rem;
        justify-content: flex-end;
        flex-wrap: nowrap;
        margin: 0;
        padding: 0;
    }
    
    .nav-links a {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        white-space: nowrap;
        background-color: rgba(255, 140, 0, 0.1);
        border-radius: 4px;
    }
    
    .dropbtn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        background-color: rgba(255, 140, 0, 0.1);
        border-radius: 4px;
    }
    
    /* Make dropdown appear above content */
    .dropdown-content {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        min-width: 180px;
        z-index: 1003;
        background-color: #004526;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        border-radius: 8px;
        overflow: hidden;
    }
    
    /* Hide header when scrolled down */
    .header-hidden {
        transform: translateY(-100%);
    }
}

/* Small phone adjustments */
@media screen and (max-width: 480px) {
    .header-container {
        padding: 0.4rem 0.8rem;
        height: 65px;
        gap: 0.5rem;
    }
    
    .logo-link img {
        width: 50px;
    }
    
    .nav-links {
        gap: 0.3rem;
    }
    
    .nav-links a {
        padding: 0.3rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .dropbtn {
        padding: 0.3rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .dropdown-content {
        top: 65px;
        min-width: 160px;
    }
}

/* Ensure body has enough padding when header is hidden */
body {
    padding-top: 80px;
    transition: padding-top 0.3s ease-in-out;
}

body.header-hidden-padding {
    padding-top: 20px; /* Reduced padding when header is hidden */
}

/* Add subtle animation when header reappears */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0.8;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header:not(.header-hidden) {
    animation: slideDown 0.3s ease-out;
}


/* ============================================
   READ MORE/LESS STYLES FOR MEMBER BIOS
   ============================================ */

.member-bio {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.bio-short {
    max-height: 120px; /* Show about 3-4 lines of text */
    overflow: hidden;
    position: relative;
}

/* Optional gradient fade effect for truncated text */
.bio-short::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

.bio-full {
    max-height: none !important;
}

.bio-full::after {
    display: none;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: #FF8C00;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px 10px;
    text-decoration: none;
    font-family: "franklin-gothic-atf", sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #004526;
    background-color: rgba(255, 140, 0, 0.1);
}

.read-more-btn i {
    font-size: 0.9rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}



/* 6-column pillars grid for home page */
@media screen and (min-width: 1025px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* Program item grid for values section */
.program-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .program-item {
        grid-template-columns: 1fr;
    }
}

/* Objectives grid styling */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.objective-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FF8C00;
    transition: transform 0.3s ease;
}

.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.objective-item h3 {
    color: #004526;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.objective-item p {
    color: #333;
    line-height: 1.6;
}

/* Contact page list styling */
.contact-info ul {
    color: #333;
    text-align: left;
    margin-left: 2rem;
    margin-top: 0.5rem;
    line-height: 1.8;
}

.contact-info li {
    margin-bottom: 0.5rem;
}

/* Enhanced contact method styling */
.contact-method h3 {
    color: #004526;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #FF8C00;
    padding-bottom: 0.5rem;
    display: inline-block;
}


/* Objectives Section  */
.objectives-section {
    max-width: 1200px;
    width: 100%;
    margin: 4rem auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.objectives-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.objective-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FF8C00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.objective-item h3 {
    color: #004526;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.objective-item p {
    color: #333;
    line-height: 1.6;
}

/* Members Grid - Fixed */
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    width: 100%;
}

.member-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-top: 5px solid #004526;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
    .objectives-section {
        padding: 0 1rem;
        margin: 3rem auto;
    }
    
    .objectives-section h2 {
        font-size: 2rem;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .member-card {
        padding: 1.5rem;
        margin: 0;
    }
}