/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a202c;
    background: #ffffff;
    scroll-behavior: smooth;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav {
    padding: 1.5rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-section h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 8px;
    font-size: 0.95rem;
}

.nav-menu > li > a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

/* Dropdown menus */
.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
    color: #333;
    font-size: 0.9rem;
    border-bottom: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #3498db;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* External link indicator */
.nav-menu a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.8em;
    opacity: 0.7;
}

/* Main content */
main {
    margin-top: 90px;
}

/* Hero section */
.hero {
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.1) 100%),
        url('img/header.jpg') center/cover no-repeat;
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.375rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 900px;
    font-weight: 500;
}

.hero .summary-grid {
    margin-top: 3rem;
    gap: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero .summary-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero .summary-card h3 {
    color: white;
}

.hero .summary-card p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    color: #667eea;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #5a67d8;
}

/* Services and About grids */
.services-grid, .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card, .about-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before, .about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before, .about-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover, .about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card h3, .about-card h3 {
    color: #1a202c;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.service-card p, .about-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Summary section styles */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.summary-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #667eea;
    text-align: left;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.summary-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.summary-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mission section styles */
.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #495057;
    text-align: left;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

/* About content styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

/* Enhanced section styling */
.content-section {
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* OVERRIDE FOR PRIVACY POLICY - Higher specificity */
.privacy-policy-section.content-section::before {
    display: none !important;
}

/* Specific override for privacy policy h2 elements */
section.content-section.privacy-policy-section .policy-content h2 {
    text-align: left !important;
}

section.content-section.privacy-policy-section .policy-content h2::after {
    left: 0 !important;
    transform: none !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Modern Content Sections Override */
.content-section {
    padding: 6rem 0 !important;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

.content-section h2 {
    font-size: 3rem !important;
    margin-bottom: 2rem !important;
    color: #1a202c !important;
    text-align: center;
    font-weight: 800 !important;
    letter-spacing: -0.025em;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.content-section > .container > p {
    font-size: 1.25rem !important;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto !important;
    color: #4a5568 !important;
    line-height: 1.8;
    font-weight: 400;
}

/* Sponsors section styles */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.sponsor-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sponsor-card:hover::before {
    transform: scaleX(1);
}

.sponsor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.sponsor-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1rem;
}

.sponsor-logo img {
    width: 120px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.8);
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Updated sponsor card styles without headlines */
.sponsor-card h3 {
    display: none; /* Hide any remaining h3 elements */
}

.sponsor-card p {
    color: #4a5568 !important;
    line-height: 1.7 !important;
    font-size: 0.95rem !important;
    margin-top: 0 !important;
    text-align: center !important;
}

.sponsor-logo {
    margin-bottom: 1.25rem !important;
}

/* Board section styles */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.board-member {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.board-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.board-member:hover::before {
    transform: scaleX(1);
}

.board-member:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.board-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2px;
}

.board-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #f8fafc;
}

.board-info {
    flex: 1;
    min-width: 0;
}

.board-info h3 {
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.board-info h4 {
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.board-info p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.7);
}

.linkedin-link:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

.linkedin-link::before {
    content: "in";
    background: #0077b5;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.linkedin-link:hover::before {
    background: white;
    color: #0077b5;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%) !important;
    color: white;
    text-align: center;
    padding: 3rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social span {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-right: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    /* Mobile navigation styles */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu > li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        font-size: 1.1rem;
        border-radius: 0;
    }
    
    /* Mobile dropdown styles */
    .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.95);
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 1rem 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 3rem;
        font-size: 1rem;
    }
    
    /* Adjust logo section for mobile */
    .logo-section h1 {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 40px;
        width: 40px;
    }
    
    nav {
        padding: 1rem 0;
    }
    
    nav .container {
        flex-wrap: nowrap;
    }
    
    /* Footer mobile styles */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Contact section styles */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.contact-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.contact-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.facebook:hover {
    background: #166fe5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.linkedin:hover {
    background: #006699;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.map-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.map-container h3 {
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-note {
    color: #64748b;
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* Service detail sections */
.service-detail {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.service-detail:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-subtitle {
    font-size: 1.3rem !important;
    color: #667eea !important;
    font-weight: 600 !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.service-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.service-text p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-text p:last-child {
    margin-bottom: 0;
}

.feature-list {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-list h3 {
    color: #1a202c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-list li strong {
    color: #1a202c;
    font-weight: 600;
}

.service-image {
    position: sticky;
    top: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* Responsive design for service details and other content */
@media (max-width: 768px) {
    /* Hero section mobile styles */
    .hero {
        padding: 4rem 0;
    }
    
    .hero h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Service detail responsive styles */
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image {
        position: static;
        order: -1;
    }
    
    .service-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .service-text p {
        text-align: left;
    }
    
    .feature-list {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .feature-list h3 {
        font-size: 1.2rem;
    }
    
    .feature-list li {
        padding: 0.6rem 0;
        padding-left: 1.25rem;
    }
    
    .feature-list li::before {
        top: 0.6rem;
        font-size: 1rem;
    }
    
    /* Contact section mobile styles */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    /* Sponsors grid mobile styles */
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* Board grid mobile styles */
    .board-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .board-member {
        flex-direction: column;
        text-align: center;
    }
    
    .board-photo {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    /* Adjust container padding for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Content section spacing */
    .content-section {
        padding: 3rem 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
}

/* Privacy Policy Specific Styles */
.privacy-policy-content {
    max-width: 800px;
    margin: 28px auto 0 auto;
}

/* Override the decorative line for privacy policy - VERY SPECIFIC */
.privacy-policy-section::before,
section.privacy-policy-section::before,
.content-section.privacy-policy-section::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

section.content-section:has(.privacy-policy-content)::before,
.content-section:has(.privacy-policy-content)::before,
body .content-section:has(.privacy-policy-content)::before,
main section.content-section:has(.privacy-policy-content)::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.title-section {
    margin-bottom: 2rem;
}

.title-section .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.privacy-policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.2;
}

.policy-content h2 {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #2d3748;
    margin: 1.5rem 0 1rem 0 !important;
    padding: 0 0 0.75rem 0 !important;
    text-align: left !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.policy-content h2::after {
    content: '';
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin-top: 0.75rem;
    border-radius: 1px;
    align-self: flex-start;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4a5568;
}

.policy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-info {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: #2d3748;
    text-align: left;
    max-width: fit-content;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-info .company-name {
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.contact-info .contact-line {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.privacy-policy-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-policy-content a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy-content h1 {
        font-size: 2rem;
    }
    
    .title-section .subtitle {
        font-size: 1rem;
    }
    
    .policy-content h2 {
        font-size: 1rem !important;
    }
    
    .policy-content ul {
        padding-left: 1.5rem;
    }
}
