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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid #f1f5f9;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0f172a;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: #0f172a;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 4px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -4px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    z-index: 999;
    border-top: 1px solid #f1f5f9;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 40px 24px;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 32px;
}

.mobile-nav-link {
    display: block;
    color: #0f172a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #3b82f6;
}

.mobile-nav-cta {
    background: #0f172a;
    color: white !important;
    border-radius: 8px;
    padding: 16px 24px !important;
    text-align: center;
    border: none !important;
    margin-top: 24px;
}

.mobile-nav-cta:hover {
    background: #334155 !important;
    color: white !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.15s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #0f172a;
    color: white;
}

.btn-primary:hover {
    background: #334155;
}

.btn-secondary {
    background: transparent;
    color: #0f172a;
    border-color: #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e0;
}

.btn-outline {
    background: transparent;
    color: #64748b;
    border-color: #e2e8f0;
}

.btn-outline:hover {
    background: #f8fafc;
    color: #0f172a;
}

.cta .btn-outline {
    background: white;
    color: rgb(8, 65, 129);
    border-color: white;
}

.cta .btn-outline:hover {
    background: #f8fafc;
    color: rgb(8, 65, 129);
    border-color: #f8fafc;
}

.btn-large {
    padding: 14px 24px;
    font-size: 15px;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #006c9e;
    z-index: 1;
    transform: rotate(-2deg) scale(1.1);

}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    right: 10%;
    bottom: 20%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.eyebrow {
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

}

.hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    padding: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.ileap-logos {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.node {
    background: white;
    border: 2px solid var(--node-color);
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--node-color);
    box-shadow: 0 4px 12px var(--node-shadow);
    font-size: 14px;
    transform: translateX(var(--offset, 0));
    position: relative;
    transition: all 0.3s ease;
}

.node:hover {
    transform: translateX(var(--offset, 0)) translateY(-2px);
    box-shadow: 0 8px 25px var(--node-shadow);
}

.node:nth-child(1) {
    --offset: -20px;
    --node-color: #3b82f6;
    --node-shadow: rgba(59, 130, 246, 0.3);
}

.node:nth-child(2) {
    --offset: 20px;
    --node-color: #10b981;
    --node-shadow: rgba(16, 185, 129, 0.3);
}

.node:nth-child(3) {
    --offset: -10px;
    --node-color: #f59e0b;
    --node-shadow: rgba(245, 158, 11, 0.3);
}

.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.connecting-lines::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 40%;
    right: 40%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 1px;
}

.connecting-lines::after {
    content: '';
    position: absolute;
    top: 65%;
    left: 35%;
    right: 45%;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #f59e0b);
    border-radius: 1px;
}

/* What is iLEAP Section */
.what-is-ileap {
    padding: 120px 0;
    background: white;
}

.what-is-ileap-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.what-is-ileap h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 600;
}

.what-is-ileap p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.what-is-ileap a {
    color: #64748b;
}

/* Mission Section */
.mission {
    padding: 120px 0;
    background: #fafafa;
}

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

.mission h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 600;
}

.mission p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Technical Specifications Section */
.tech-specs {
    padding: 120px 0;
    background: white;
}

.tech-specs-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-specs h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 600;
}

.tech-specs p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 600;
}

.features-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #0f172a;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* Community Showcase */
.community-showcase {
    margin: 120px 0;
    background: white;
}

.showcase-header {
    text-align: center;
}

.showcase-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 600;
}

.showcase-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    text-align: center;
    margin: 40px auto;
    line-height: 1.6;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.community-type {
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 32px;
}

.community-type h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 600;
}

.community-type ul {
    list-style: none;
}

.community-type li {
    padding: 6px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
    font-size: 15px;
}

.community-type li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f172a;
    font-weight: 500;
    font-size: 14px;
}

.community-logos {
    text-align: center;
}

.carousel {
    margin: 0 auto;
    padding: 20px 0;
    max-width: auto;
    overflow: hidden;
    display: flex;
    flex: 0 0 100%;
    position: relative;
    max-height: 220px;
}

.carousel::before,
.carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel::before {
    left: 0;
    background: linear-gradient(to right, white 70%, transparent 100%);
}

.carousel::after {
    right: 0;
    background: linear-gradient(to left, white 70%, transparent 100%);
}

.carousel:hover .card-group {
    animation-play-state: paused;
}

.card-group {
    display: flex;
    gap: 40px;
    padding-right: 40px;
    will-change: transform;
    animation: scrolling 30s linear infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.card {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 200px;
}

.card img {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    transition: transform 0.2s ease;
}

.card img:hover {
    transform: translateY(-1px) scale(1.01);
}

.logos-subtitle {
    color: #4a5568;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: all 0.2s ease;
}

.logo-item:hover {
    transform: translateY(-1px) scale(1.01);

}

.org-logo {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: rgb(0, 108, 158);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #fafafa;
    color: #64748b;
    padding: 60px 0 20px;
    border-top: 1px solid #f1f5f9;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}


.footer-logo-item {
    display: flex;
    align-items: center;
    justify-content: left;
    max-height: 40px;
    transition: all 0.2s ease;
    margin: 20px 0;
}

.footer-logo-item:hover {
    transform: translateY(-1px) scale(1.01);

}

.footer-org-logo {
    max-height: 40px;
}

.footer-brand p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 600;
    font-size: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-column a:hover {
    color: #0f172a;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #0f172a;
}

.footer-copyright {
    color: #64748b;
    font-size: 14px;
}

.footer-copyright p {
    margin: 0;
}

/* Page-specific styles */
.page-header {
    background: #fafafa;
    padding: 120px 0 80px;
    border-bottom: 1px solid #f1f5f9;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 600;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    line-height: 1.6;
}

.main-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.content-main {
    max-width: none;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 24px;
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
}

.content-section h4 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.content-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.25rem;
    color: #0f172a;
    line-height: 1.6;
    margin-bottom: 32px;
}

.benefits-list,
.barriers-list,
.benefits-numbered {
    margin: 24px 0;
    padding-left: 20px;
}

.benefits-list li,
.barriers-list li,
.benefits-numbered li {
    margin-bottom: 16px;
    color: #64748b;
    line-height: 1.6;
}

.data-transactions-overview {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.transaction-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    align-items: flex-start;
}

.transaction-number {
    width: 40px;
    height: 40px;
    background: #0f172a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.transaction-content h4 {
    margin-bottom: 8px;
    margin-top: 0;
}

.transaction-content p {
    margin-bottom: 0;
    font-size: 15px;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.involvement-card {
    padding: 32px;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
}

.involvement-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.involvement-card p {
    margin-bottom: 20px;
    font-size: 15px;
}

.content-sidebar {
    padding-top: 40px;
}

.sidebar-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.sidebar-card li {
    margin-bottom: 12px;
}

.sidebar-card a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.sidebar-card a:hover {
    color: #0f172a;
}

/* Highlighted Sidebar Cards */
.sidebar-card-highlight {
    position: relative;
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-card-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sidebar-card-highlight h3 {
    color: white;
    font-weight: 700;
}

.sidebar-card-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.sidebar-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

/* Green theme for Joining page */
.sidebar-card-green {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.sidebar-card-green .sidebar-card-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Orange theme for Contributing page */
.sidebar-card-orange {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.sidebar-card-orange .sidebar-card-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Purple theme for Implementing page */
.sidebar-card-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.sidebar-card-purple .sidebar-card-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* White button for highlighted cards */
.btn-white {
    background: white;
    color: #006c9e;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-card-green .btn-white:hover {
    color: #059669;
}

.sidebar-card-orange .btn-white:hover {
    color: #ea580c;
}

.sidebar-card-purple .btn-white:hover {
    color: #7c3aed;
}

/* Community Guide Styles */
.community-overview {
    margin-bottom: 80px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.overview-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.overview-card.primary {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.overview-card h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.overview-card>p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-content h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 12px;
    margin-top: 24px;
    font-weight: 600;
}

.card-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.card-content li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 8px;
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.benefits-section {
    background: #fafafa;
    padding: 80px 0;
    margin: 80px 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
}

.benefits-table {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.benefits-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #0f172a;
    color: white;
}

.benefits-header>div {
    padding: 20px;
    font-weight: 600;
    border-right: 1px solid #334155;
}

.benefits-header>div:last-child {
    border-right: none;
}

.benefits-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
}

.benefits-row:last-child {
    border-bottom: none;
}

.benefit-area {
    padding: 24px 20px;
    background: #fafafa;
    border-right: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.benefit-area h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin: 0;
    font-weight: 600;
}

.benefit-list {
    padding: 24px 20px;
    border-right: 1px solid #f1f5f9;
}

.benefit-list:last-child {
    border-right: none;
}

.benefit-list.collective {
    grid-column: 2 / -1;
    border-right: none;
}

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

.benefit-list li {
    padding: 6px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.get-started-section {
    margin: 80px 0;
}

.get-started-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 600;
}

.get-started-section>.container>p {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 48px;
    line-height: 1.6;
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pathway-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.pathway-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.pathway-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Resources Page Styles */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.resource-category {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
}

.category-header {
    padding: 32px;
    background: #f3f3f3;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.category-header h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.category-header p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.resource-list {
    padding: 32px;
}

.resource-item {
    padding: 24px;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.resource-item:last-child {
    margin-bottom: 0;
}

.resource-item.featured {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border-color: #3b82f6;
}

.resource-item h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 600;
}

.resource-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.resource-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-item {
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.whitepaper-section {
    background: #fafafa;
    padding: 80px 0;
    margin-top: 80px;
}

.whitepaper-header {
    text-align: center;
    margin-bottom: 60px;
}

.whitepaper-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.whitepaper-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.content-section h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 600;
}

.content-section ol {
    margin: 20px 0;
    padding-left: 20px;
}

.content-section ol li {
    margin-bottom: 12px;
    color: #64748b;
    line-height: 1.6;
}

/* Privacy Page Styles */
.last-updated {
    background: #f1f5f9;
    padding: 12px 16px;
    border-radius: 6px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 32px;
}

.contact-info {
    background: #fafafa;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

.contact-info p {
    margin-bottom: 16px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* About Page Styles */
.community-showcase-about {
    margin: 40px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.showcase-item {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.showcase-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.showcase-item h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 600;
}

.showcase-item p {
    color: #64748b;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
}

.organizations-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.organization-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 32px;
}

.org-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.org-logo-placeholder {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

/* .org-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
} */

.org-header h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.organization-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.principle-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.principle-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.principle-card h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 600;
}

.principle-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
}

.features-overview {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.feature-item {
    padding: 24px;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.involvement-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.path-item {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.path-item h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.path-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    .nav-actions .btn {
        display: none !important;
    }

    .nav-actions {
        display: flex !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        grid-template-areas:
            "text"
            "visual";
    }

    .ileap-logos {
        max-width: 400px;
    }

    .hero-logos {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .hero-text {
        grid-area: text;
        margin-bottom: 40px;
        background-color: #059669;
    }

    .hero-visual {
        grid-area: visual;
        margin: 24px 0px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .hero-actions {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-legal {
        order: 1;
    }

    .footer-copyright {
        order: 2;
    }

    .cta-actions {
        flex-direction: row;
        align-items: center;
    }

    .logos-grid {
        flex-direction: column;
        align-items: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .involvement-options {
        grid-template-columns: 1fr;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .benefits-table,
    .benefits-header,
    .benefits-row {
        display: block;
    }

    .benefits-header {
        display: none;
    }

    .benefits-row {
        border: 1px solid #f1f5f9;
        border-radius: 8px;
        margin-bottom: 16px;
        overflow: hidden;
    }

    .benefit-area,
    .benefit-list {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }

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

    .pathways-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Join iLEAP Section Styles */
.why-join {
    padding: 120px 0;
    background: #fafafa;
}

.why-join-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-join-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-join-header h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 600;
}

.why-join p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.why-join-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
}

.benefit-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.benefit-card h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 600;
}

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

.benefit-card li {
    padding: 6px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.benefit-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f172a;
    font-weight: 500;
    font-size: 14px;
}

/* Resources Highlight Section Styles */
.resources-highlight {
    padding: 120px 0;
    margin: 0px 0;
    background: #fafafa;
}

.resources-highlight h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 600;
}

.resources-highlight>.container>p {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.resources-highlight .category-header h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.resources-highlight .resource-item h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .why-join-benefits {
        grid-template-columns: 1fr;
    }

    .why-join-header h2 {
        font-size: 2rem;
    }

    .why-join-lead {
        font-size: 1.125rem;
    }

    .resources-highlight h2 {
        font-size: 2rem;
    }

    .hero {
        height: 90vh;
    }
}
