/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Simplified Sticky Navigation */
.navbar {
    background: transparent;
    padding: 1.5rem 0;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.navbar.scrolled {
    padding: 1rem 0;
}

.nav-container {
    pointer-events: auto;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

/* Logo as Button */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.51rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: #3b82f6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    padding: 0.6375rem 1.4875rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 50px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    filter: saturate(0.9);
}

.logo:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.15));
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    color: #2563eb;
}

.logo-text {
    font-size: 1.02rem;
    font-weight: 700;
    color: #3b82f6;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: #2563eb;
}

.logo-icon {
    font-size: 1.19rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.nav-menu a {
    text-decoration: none;
}

/* Enhanced Connect Tab */
.nav-connect {
    display: inline-flex;
    align-items: center;
    gap: 0.51rem;
    padding: 0.6375rem 1.4875rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 50px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.255px;
    font-size: 0.8075rem;
    text-decoration: none;
    filter: saturate(0.9);
}

.nav-connect::before {
    display: none;
}

.nav-connect::after {
    display: none;
}

.nav-connect:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.15));
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    color: #2563eb;
}

.nav-connect.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.15));
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    filter: saturate(0.9);
}

.nav-connect.active::before {
    color: #3b82f6;
}

.nav-connect.active:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.2));
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    color: #2563eb;
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, #a8d0f0 0%, #e3edf8 50%, #ffffff 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: #1e40af;
    padding: 160px 20px 170px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(253, 238, 247, 0.3) 50%,
        rgba(253, 238, 247, 0.6) 100%);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(30, 64, 175, 0.2);
    color: #1e40af;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(30, 64, 175, 0.2);
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-bottom: 0.2em;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #1e3a8a;
}

.hero-subtitle .underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #1e40af;
    border-bottom: 3px solid #1e40af;
    transform: rotate(45deg);
    opacity: 0.8;
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    filter: saturate(0.9);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #1e40af;
    border: 2px solid rgba(30, 64, 175, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
    color: #1e3a8a;
}

.btn-secondary {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
    filter: saturate(0.9);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 26, 46, 0.4);
}

/* Enhanced Content Sections */
.content-section {
    padding: 80px 20px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.content-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transition overlay at top of first content section */
.content-section:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Smooth transition overlay at bottom of content sections */
.content-section:not(.alt-bg)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 225, 195, 0.1) 30%,
        rgba(255, 225, 195, 0.3) 60%,
        rgba(255, 225, 195, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(59, 130, 246, 0.2) 20%,
        rgba(59, 130, 246, 0.4) 50%,
        rgba(59, 130, 246, 0.2) 80%,
        transparent 100%);
    margin: 0 auto 40px;
    max-width: 300px;
    border-radius: 2px;
    position: relative;
    animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-number {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.content-section h2 {
    font-size: 3rem;
    margin-bottom: 0;
    color: #3b82f6;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.content-section#team .section-content {
    text-align: center;
}

/* Initiatives Horizontal Scroll */
.initiatives-scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.initiatives-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.3) transparent;
}

.initiatives-scroll::-webkit-scrollbar {
    height: 8px;
}

.initiatives-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.initiatives-scroll::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 4px;
}

.initiatives-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
}

.initiative-item {
    flex: 0 0 calc(90% - 1rem);
    min-width: calc(90% - 1rem);
    max-width: calc(90% - 1rem);
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.initiative-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.initiative-header {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.initiative-item p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .initiative-item {
        flex: 0 0 calc(85% - 1rem);
        min-width: calc(85% - 1rem);
        max-width: calc(85% - 1rem);
    }
}

@media (min-width: 1024px) {
    .initiative-item {
        flex: 0 0 calc(80% - 1rem);
        min-width: calc(80% - 1rem);
        max-width: calc(80% - 1rem);
    }
}

.content-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4b5563;
    text-align: left;
    line-height: 1.8;
}


/* Mission Section Two-Column Layout */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-left {
    display: flex;
    flex-direction: column;
}

.mission-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.mission-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4b5563;
    text-align: left;
    line-height: 1.8;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mission-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.mission-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    flex-shrink: 0;
}

.mission-item-content {
    flex: 1;
}

.mission-item-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.8rem;
}

.mission-item-content p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* What We Do Section Grid Layout */
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.what-we-do-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.what-we-do-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    flex-shrink: 0;
}

.what-we-do-content {
    flex: 1;
}

.what-we-do-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.what-we-do-content p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.alt-bg {
    background: linear-gradient(135deg, #fff0e0 0%, #ffffff 100%);
    position: relative;
    filter: saturate(0.9);
}

/* Smooth transition overlay at top of alt-bg section */
.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(255, 240, 224, 0.5) 0%,
        rgba(255, 240, 224, 0.3) 30%,
        rgba(255, 240, 224, 0.1) 60%,
        rgba(255, 240, 224, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Smooth transition overlay at bottom of alt-bg section */
.alt-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(255, 240, 224, 0) 0%,
        rgba(255, 240, 224, 0.1) 30%,
        rgba(255, 240, 224, 0.2) 60%,
        rgba(255, 240, 224, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Section-specific gradients - Pink, Orange, Yellow */
.content-section#mission {
    background: linear-gradient(135deg, #fdf0f7 0%, #ffffff 100%);
    position: relative;
}

.content-section#mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(253, 240, 247, 0.6) 0%,
        rgba(253, 240, 247, 0.3) 50%,
        rgba(253, 240, 247, 0) 100%);
    pointer-events: none;
}

.content-section#mission::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(253, 240, 247, 0) 0%,
        rgba(255, 225, 195, 0.3) 50%,
        rgba(255, 225, 195, 0.6) 100%);
    pointer-events: none;
}

.content-section#impact {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
}

.content-section#impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(240, 253, 244, 0.6) 0%,
        rgba(240, 253, 244, 0.3) 50%,
        rgba(240, 253, 244, 0) 100%);
    pointer-events: none;
}

.content-section#impact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(240, 253, 244, 0) 0%,
        rgba(255, 247, 215, 0.3) 50%,
        rgba(255, 247, 215, 0.6) 100%);
    pointer-events: none;
}

.content-section#values {
    background: linear-gradient(135deg, #fff7d9 0%, #ffffff 100%);
    position: relative;
}

.content-section#values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(255, 247, 215, 0.6) 0%,
        rgba(255, 247, 215, 0.3) 50%,
        rgba(255, 247, 215, 0) 100%);
    pointer-events: none;
}

.content-section#team {
    background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
    position: relative;
}

.content-section#team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(238, 242, 255, 0.6) 0%,
        rgba(238, 242, 255, 0.3) 50%,
        rgba(238, 242, 255, 0) 100%);
    pointer-events: none;
}

.content-section#team::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(238, 242, 255, 0) 0%,
        rgba(255, 247, 215, 0.3) 50%,
        rgba(255, 247, 215, 0.6) 100%);
    pointer-events: none;
}

/* Team Members */
.team-members {
    max-width: 1000px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: start;
}

.team-member-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.team-member-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    margin-bottom: 1.5rem;
}

.team-member-info {
    width: 100%;
    text-align: center;
}

.team-member-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.name-first,
.name-last {
    display: inline-block;
}

.team-member-role {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.role-title,
.role-separator,
.role-college {
    display: inline-block;
}

.role-separator {
    color: #64748b;
}

.team-member-education {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-member-image,
    .team-member-placeholder {
        width: 300px;
        height: 300px;
    }
}

/* Connect Page Hero */
.connect-hero {
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 50%, #f0fdf4 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: #3b82f6;
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    filter: saturate(0.9);
    min-height: auto;
}

.connect-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.connect-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(255, 255, 255, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

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

.connect-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    color: #3b82f6;
}

.connect-intro {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    color: #4b5563;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Enhanced Donate Section */
.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.donate-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.donate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.donate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.donate-card h3 {
    color: #1a1a2e;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.donate-card p {
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.7;
}

.donation-info {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.05));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    filter: saturate(0.9);
}

.donation-info h3 {
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.donation-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.donation-info li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    color: #4b5563;
    line-height: 1.7;
}

.donation-info li:last-child {
    border-bottom: none;
}

.tax-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(59, 130, 246, 0.2);
    font-style: italic;
    color: #64748b;
    text-align: center;
    font-size: 0.95rem;
}

/* Enhanced Positions Section */
.positions-intro {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.position-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-card:hover::before {
    transform: scaleY(1);
}

.position-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.position-card h3 {
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    font-size: 1.7rem;
    font-weight: 700;
}

.position-type {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50px;
}

.position-requirements {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.position-requirements li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4b5563;
    line-height: 1.7;
}

.position-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.general-application {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.general-application h3 {
    color: #1a1a2e;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.general-application p {
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.7;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #fff7d9 0%, #ffffff 100%);
    color: #4b5563;
    padding: 1.5rem 20px;
    text-align: center;
    position: relative;
    filter: saturate(0.9);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, 
        rgba(255, 247, 215, 0.6) 0%,
        rgba(255, 247, 215, 0.3) 50%,
        rgba(255, 247, 215, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.3), transparent);
    z-index: 2;
}

.footer p {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .content-section h2 {
        font-size: 2.2rem;
    }

    .connect-hero h1 {
        font-size: 2.5rem;
    }

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

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 20px 80px;
        min-height: 90vh;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 80px 20px;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .donate-card,
    .position-card {
        padding: 2rem;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}
