:root {
    --primary-color: #FFF765;
    --secondary-color: #0C224E;
    --text-color: #333;
    --background-color: #fff;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 400;
    overflow-y: scroll; /* Always show vertical scrollbar to prevent layout shift */
}

/* Base H2 Styles - Unified across the site */
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 100%;
}

/* H2 with gradient background (for main sections) */
h2.gradient {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* H2 without underline (for specific contexts) */
h2.no-underline::after {
    display: none;
}

/* H2 with white text (for dark backgrounds) */
h2.white {
    color: white;
}

h2.white::after {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Ensure proper stacking context */
    overflow: visible; /* Ensure buttons are visible */
}

/* Header Styles */
.site-header {
    background: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: #0C224E;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.2s, transform 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.nav-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
    animation: none;
}

.nav-links a:hover {
    color: var(--secondary-color);
    text-shadow: none;
}

/* Active navigation state */
.nav-links a.active {
    color: var(--secondary-color);
    font-weight: 700;
}

.nav-links a.active::after {
    opacity: 1;
    transform: scaleX(1);
    background: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.05) 10%,
        rgba(255,255,255,0.18) 40%,
        rgba(255,255,255,0.99) 60%,
        rgba(255,255,255,0.18) 80%,
        rgba(255,255,255,0.05) 90%,
        rgba(255,255,255,0) 100%
    );
    background-size: 200% 200%;
    animation: heroHighlightMove 14s ease-in-out infinite;
}

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

.hero > * { position: relative; z-index: 1; }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
    padding-top: 4rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    min-height: 3.9em;
}

.hero .tagline {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero .description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.app-preview {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(12, 34, 78, 0.15),
        0 1px 3px rgba(12, 34, 78, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.app-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Features Section */
.features {
    padding: 4rem 0;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 
        0 10px 20px rgba(12, 34, 78, 0.05),
        0 1px 3px rgba(12, 34, 78, 0.1);
    transition: all 0.3s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff9b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 247, 101, 0.3);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(12, 34, 78, 0.1),
        0 2px 4px rgba(12, 34, 78, 0.15);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 247, 101, 0.4);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer Styles */
.site-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-social a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.values-list {
    list-style: none;
    margin: 2rem 0;
}

.values-list li {
    margin-bottom: 2rem;
}

/* Partners Page Styles */
.partners-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff9b3 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    display: none;
}

.partners-hero-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.partners-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.partners-hero-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

.partners-hero-description {
    margin-bottom: 2.5rem;
}

.partners-hero-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.partners-cta-text {
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    opacity: 1 !important;
}

.partners-hero-cta {
    margin-top: 2rem;
}

/* Partners Showcase */
.partners-showcase {
    padding: 4rem 0;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.partner-card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo-container {
    flex: 1;
    text-align: center;
}

.partner-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.partner-card:hover .partner-logo {
    opacity: 0.8;
}

/* Special handling for Honest Days Work logo */
img[src*="cropped-an-honest-days-work-logo.png"] {
    filter: invert(1);
}

.partner-card-content {
    padding: 0 2rem 2rem;
}

.partner-card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.partner-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-card-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #f0f0f0;
}

.partner-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partners-hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .partners-hero {
        padding: 6rem 0 4rem;
    }
    
    .partners-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .partners-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .partners-hero-text h1 {
        font-size: 2rem;
    }
    
    .partner-card {
        margin: 0 1rem;
    }
    
    .partner-card-header,
    .partner-card-content,
    .partner-card-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Credits Section Styles */
.credits-section {
    padding: 4rem 0;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.credits-content {
    text-align: center;
    margin: 0 auto;
}

.credits-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.credits-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 500;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* Credit card inherits partner card styles */







.credit-fallback {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    background: var(--secondary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.credit-fallback svg {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/* Responsive Design for Credits */
@media (max-width: 768px) {
    .credits-content h2 {
        font-size: 2rem;
    }
    
    .credits-subtitle {
        font-size: 1.1rem;
    }
    
    .credits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .credits-content h2 {
        font-size: 1.8rem;
    }
    
    .credit-card {
        margin: 0 1rem;
    }
    
    .credit-card-header,
    .credit-card-content,
    .credit-card-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        bottom: -55px;
        transform: none;
    }
    
    .testimonial-nav:hover {
        transform: none;
    }
    
    .testimonial-prev {
        left: calc(50% - 90px);
    }
    
    .testimonial-next {
        right: calc(50% - 90px);
    }
    
    .testimonial-nav i {
        font-size: 1rem;
    }
    
    .testimonial-dots {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Team Page */
.team-content {
    padding: 6rem 0;
    background: #f8f9fa;
}

.team-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.team-content h2:not(:first-child) {
    margin-top: 5rem;
}

/* Enhanced Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.core-team-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 800px;
    margin: 0 auto 4rem;
}

.hitchers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Enhanced Team Member Cards */
.team-member {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #fff9b3 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.co-founder {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    transform: scale(1.05);
}

.co-founder:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Enhanced Member Images */
.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    position: relative;
    background: #f0f0f0;
}

.hitchers-grid .member-image {
    width: 100px;
    height: 100px;
    border-width: 3px;
}

.co-founder .member-image {
    width: 140px;
    height: 140px;
    border-width: 5px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

/* Enhanced Typography */
.team-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hitchers-grid .team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.co-founder h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

/* Member Role Styles */
.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.co-founder .member-role {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Member Bio Styles */
.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.co-founder .member-bio {
    font-size: 1rem;
}

/* Member Handle Styles (for hitchers) */
.member-handle {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.hitchers-grid .member-handle {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* Enhanced Social Links */
.member-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: auto;
}

.hitcher-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--secondary-color);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hitcher-icon::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.5s ease;
}

.hitcher-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 34, 78, 0.4);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.hitcher-icon:hover::before {
    left: 100%;
}

.hitcher-icon svg,
.hitcher-icon i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hitcher-icon:hover svg,
.hitcher-icon:hover i {
    transform: scale(1.1);
}

/* Section Headers */
.team-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .team-content {
        padding: 4rem 0;
    }
    
    .team-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .core-team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .hitchers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-member {
        margin-bottom: 2rem;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .co-founder .member-image {
        width: 120px;
        height: 120px;
    }
    
    .hitchers-grid .member-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hitchers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-socials {
        gap: 0.5rem;
    }
    
    .hitcher-icon {
        width: 32px;
        height: 32px;
    }
    
    .hitcher-icon svg,
    .hitcher-icon i {
        width: 16px;
        height: 16px;
    }
}

/* General Link Styles */
a:not(.cta-button):not(.contact-button):not(.nav-links a):not(.testimonial-nav):not(.testimonial-dot):not(.hitcher-icon):not(.burger) {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:not(.cta-button):not(.contact-button):not(.nav-links a):not(.testimonial-nav):not(.testimonial-dot):not(.hitcher-icon):not(.burger):hover {
    color: #1a3a7a; /* Darker blue for better readability */
}

a:not(.cta-button):not(.contact-button):not(.nav-links a):not(.testimonial-nav):not(.testimonial-dot):not(.hitcher-icon):not(.burger):visited {
    color: var(--secondary-color);
}

/* Contact Page */
.contact-content {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-message {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(12, 34, 78, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff9b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(255, 247, 101, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.contact-card h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a3a7a; /* Darker blue for better readability */
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.contact-button.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.3);
}

.contact-button.email {
    background: var(--secondary-color);
    color: white;
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(12, 34, 78, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-button.email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 240%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0; /* hidden by default */
}

.contact-button.email:hover::before {
    opacity: 1;
    animation: shimmer 1.2s linear forwards;
}

@keyframes shimmer {
    0%   { left: -120%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 120%; opacity: 0; visibility: hidden; }
}

.contact-button.email:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 34, 78, 0.2);
}

.contact-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f8f9fa;
    padding-left: 2rem;
    padding-right: 2rem; /* Add horizontal padding for button space */
    position: relative; /* Ensure proper stacking context */
    overflow: visible; /* Ensure buttons are visible */
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    height: 350px; /* Increased from 280px to make boxes taller */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0 1.5rem;
    overflow: visible; /* Ensure buttons outside container are visible */
    pointer-events: none; /* Allow clicks to pass through to buttons */
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(12, 34, 78, 0.12);
    transition: all 0.3s ease;
    z-index: 20; /* Increased z-index to ensure buttons are on top */
    color: var(--secondary-color);
    pointer-events: auto; /* Ensure buttons are clickable */
}

.testimonial-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(12, 34, 78, 0.2);
}

.testimonial-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-prev {
    left: -24px;
}

.testimonial-next {
    right: -24px;
}

.testimonial-nav i {
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-slide {
    display: none;
    flex: 1 1 100%;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(12,34,78,0.08);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: absolute;
    left: 0; right: 0;
    opacity: 0;
    transform: scale(0.98) translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
    transform: scale(1) translateY(0);
    position: relative;
    z-index: 2;
}

.testimonial-content {
    width: 100%;
}

.quote-mark {
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: serif;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.testimonial-slide blockquote p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.testimonial-slide footer {
    margin-top: 1.2rem;
    font-size: 1rem;
    color: #666;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.testimonial-slide cite {
    font-weight: 700;
    color: var(--secondary-color);
    font-style: normal;
}

.testimonial-slide .source {
    display: block;
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 0.2rem;
    width: 100%;
    text-align: center;
}

.country-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-left: 0.5rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    outline: none;
    box-shadow: 0 2px 8px rgba(12,34,78,0.06);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.18);
}

@media (max-width: 768px) {
    .testimonial-carousel {
        height: 400px; /* Slightly taller on mobile for better readability */
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        position: absolute;
        top: auto;
        bottom: -60px;
        transform: none;
        z-index: 30;
    }
    
    .testimonial-nav:hover {
        transform: none;
    }
    
    .testimonial-prev {
        left: calc(50% - 110px);
    }
    
    .testimonial-next {
        right: calc(50% - 110px);
    }
    
    .testimonial-nav i {
        font-size: 1rem;
    }
    
    .testimonial-dots {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .testimonial-slide {
        padding: 1.5rem 1rem 1.5rem;
    }
    
    .quote-mark {
        font-size: 2.5rem;
    }
    
    .testimonial-slide blockquote p {
        font-size: 1.1rem;
    }
    
    .testimonial-nav {
        width: 36px;
        height: 36px;
        position: absolute;
        top: auto;
        bottom: -55px;
        transform: none;
        z-index: 30;
    }
    
    .testimonial-nav:hover {
        transform: none;
    }
    
    .testimonial-prev {
        left: calc(50% - 100px);
    }
    
    .testimonial-next {
        right: calc(50% - 100px);
    }
    
    .testimonial-nav i {
        font-size: 0.9rem;
    }
    
    .testimonial-dots {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    text-align: center;
    background: var(--primary-color);
}

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

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
    color: white;
    border: none;
    cursor: pointer;
}

.cta-button.no-shimmer::before,
.cta-button.secondary.no-shimmer::before,
.contact-button.no-shimmer::before {
    display:none !important;
}

.cta-button.no-shimmer:hover::before,
.cta-button.secondary.no-shimmer:hover::before,
.contact-button.no-shimmer:hover::before {
    display:none !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(12, 34, 78, 0.15), 0 3px 6px rgba(12, 34, 78, 0.1);
    background: var(--secondary-color); /* keep solid colour */
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 
        0 5px 10px rgba(12, 34, 78, 0.1),
        0 2px 4px rgba(12, 34, 78, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Phone Frame Styles */
.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: var(--secondary-color);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 20px 40px rgba(12, 34, 78, 0.2),
        0 1px 3px rgba(12, 34, 78, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.2);
    transform: 
        perspective(1000px) 
        rotateY(-15deg) 
        rotateX(5deg) 
        translateZ(50px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.phone-frame:hover {
    transform: 
        perspective(1000px) 
        rotateY(0deg) 
        rotateX(0deg) 
        translateZ(80px);
}

.phone-notch {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%) translateZ(20px);
    width: 40%;
    height: 4%;
    background: var(--secondary-color);
    border-radius: 20px;
    z-index: 2;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
}

.phone-notch::before {
    content: '';
    width: 2.5%;
    height: 2.5%;
    min-width: 4px;
    min-height: 4px;
    aspect-ratio: 1;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: translateZ(10px);
}

.screen-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.screen-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screen-slide.active {
    opacity: 1;
}

.screen-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.screen-captions {
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 210px;  /* 75% of 280px */
    margin: 0 auto;
    height: 60px; /* Fixed height to prevent layout shifts */
    position: relative;
}

.phone-frame:hover ~ .screen-captions {
    opacity: 1;
}

.screen-caption {
    opacity: 0;
    transition: all 0.5s ease;
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
    background: var(--secondary-color);
    padding: 0;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(12, 34, 78, 0.1);
    backdrop-filter: blur(8px);
    transform: translateY(10px);
    text-align: left;
    display: flex;
    align-items: center;
    max-width: 100%;
    word-wrap: break-word;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.screen-caption i {
    font-size: 1.1rem;
    opacity: 0.9;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.4) 0%, 
        rgba(255,255,255,0.2) 25%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.2) 75%,
        rgba(255,255,255,0.4) 100%
    );
    border-radius: 50%;
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.2),
        inset 0 1px 2px rgba(255,255,255,0.3);
    position: relative;
    margin-right: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.screen-caption i::after {
    display: none;
}

@keyframes iconShine {
    0% {
        transform: translateX(-200%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.screen-caption.active {
    opacity: 1;
    transform: translateY(0);
    padding: 8px 15px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
        padding-top: 0;
    }
    
    .hero-image {
        margin: 0 auto;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .screen-captions {
        width: 180px;  /* 75% of 240px */
        height: 50px; /* Slightly smaller for tablet */
    }
    
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 3rem;
        min-height: 4.5em;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 8rem 0 6rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .tagline {
        font-size: 1.5rem;
    }
    
    .hero .description {
        font-size: 1.1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .team-member {
        margin-bottom: 2rem;
    }
    
    .testimonial-carousel {
        min-height: 180px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .phone-frame {
        width: 200px;
        height: 420px;
    }
    
    .screen-captions {
        width: 150px;  /* 75% of 200px */
        height: 45px; /* Even smaller for mobile */
    }
    
    .phone-notch {
        top: 4.5%;
        width: 45%;
        height: 4%;
        padding-left: 8%;
    }
    
    .phone-notch::before {
        width: 3%;
        height: 3%;
        min-width: 3px;
        min-height: 3px;
    }
}

.hitcher-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.hitcher-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f7fa;
    color: var(--secondary-color);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 6px rgba(12,34,78,0.06);
    font-size: 1.2rem;
    text-decoration: none;
}

.hitcher-icon:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(12,34,78,0.12);
}

.hitcher-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    display: block;
}

/* Burger Menu Styles */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-left: 1rem;
}
.burger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 4px 0;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.burger.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        box-shadow: 0 8px 32px rgba(12,34,78,0.12);
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        width: 220px;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        display: none;
        z-index: 1050;
        transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        font-size: 1.1rem;
        color: var(--secondary-color);
        width: 100%;
        padding: 0.5rem 0;
    }
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(12,34,78,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.3s;
}
.modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(12,34,78,0.18);
  padding: 2.5rem 2rem 2rem;
  max-width: 650px;
  width: 520px;
  text-align: center;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { transform: translateY(40px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary-color);
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--primary-color);
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.modal-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.modal-success {
  color: var(--secondary-color);
  background: var(--primary-color);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.5rem;
  font-weight: 600;
  display: block;
}
@media (max-width: 700px) {
  .modal-content {
    width: 98vw;
    max-width: 98vw;
    padding: 1.5rem 0.5rem 1.5rem;
  }
}

/* Cinematic Video Section */
.cinematic-video-section {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  background: black;
  margin: 0;
  padding: 0;
}
.cinematic-video-wrapper {
  position: relative;
  width: 100vw;
  height: 40vw; /* 2.5:1 aspect ratio for cinematic look */
  max-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cinematic-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 80vw; /* Double the wrapper height to show only the middle 50% */
  min-height: 100vh;
  pointer-events: none;
  border: none;
}
@media (max-width: 768px) {
  .cinematic-video-wrapper {
    height: 56vw;
    max-height: 40vh;
  }
  .cinematic-video-wrapper iframe {
    height: 112vw;
    min-height: 60vh;
  }
}

.cinematic-fade {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(12,34,78,0.45);
  z-index: 1;
  pointer-events: none;
}
.cinematic-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.cinematic-overlay strong {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(12,34,78,0.25);
  letter-spacing: -0.01em;
}
.highlight-everybody {
  background: var(--secondary-color);
  color: #fff;
  border-radius: 0.5em;
  padding: 0.1em 0.4em;
  margin: 0 0.15em;
  display: inline-block;
}
@media (max-width: 768px) {
  .cinematic-overlay strong {
    font-size: 1.3rem;
  }
}

.partners-logo-section {
  background: #fff;
  padding: 3rem 0 2rem;
  text-align: center;
}
.partners-logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.partner-logo {
  max-height: 70px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .partner-logo {
    max-height: 44px;
    max-width: 120px;
  }
}

img[src*="cropped-an-honest-days-work-logo.png"] {
  filter: grayscale(0.3) invert(1);
}

.waitlist-embed {
  margin-top: 1.5rem;
  max-width: 100%;
  overflow-x: auto;
}
.waitlist-embed .embed-page {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(12,34,78,0.08);
  padding: 1.5rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-embed .publication-logo {
  max-width: 80px;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.waitlist-embed .publication-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.waitlist-embed .publication-tagline {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.waitlist-embed .subscribe-widget {
  margin-top: 1rem;
}
@media (max-width: 600px) {
  .waitlist-embed .embed-page {
    padding: 1rem 0.2rem;
  }
  .waitlist-embed .publication-logo {
    max-width: 56px;
  }
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff9b3 100%);
    color: var(--secondary-color);
}

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

.about-hero-text h2 {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff9b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(255, 247, 101, 0.3);
}

.story-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(12, 34, 78, 0.1);
    transition: all 0.3s ease;
}

.timeline-marker i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(12, 34, 78, 0.15);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    line-height: 1.6;
    color: #666;
}

.timeline-video {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.timeline-video .instagram-media {
    max-width: 100% !important;
    width: 100% !important;
    min-width: auto !important;
    margin: 0 !important;
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: white;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-tagline {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

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

.why-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12, 34, 78, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff9b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 247, 101, 0.3);
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.why-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-challenge {
    background: var(--secondary-color);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.challenge-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.challenge-response {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Building Section */
.building-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.building-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.building-tagline {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.building-highlight {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    text-align: center;
}

.highlight-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.feature-showcase-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(12, 34, 78, 0.08);
    transition: all 0.3s ease;
}

.feature-showcase-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(12, 34, 78, 0.12);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3a7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.showcase-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-showcase-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: white;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-header h2 {
    color: white;
}

.mission-tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.mission-beliefs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.belief-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.belief-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.belief-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.belief-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.belief-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.belief-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.mission-cta {
    text-align: center;
    margin-top: 3rem;
}

.mission-cta h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.mission-cta .cta-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.mission-cta .cta-button:hover {
    background: #fff9b3;
    transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .story-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        margin-right: 1.5rem;
    }
    
    .timeline-marker i {
        font-size: 1rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .mission-beliefs {
        grid-template-columns: 1fr;
    }
    
    .about-hero-text h2 {
        font-size: 2rem;
    }
    
    .building-highlight {
        padding: 2rem;
    }
    
    .why-challenge {
        padding: 2rem;
    }
}

/* Delete Account Page */
.delete-account-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.delete-account-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(12, 34, 78, 0.08);
    text-align: center;
}

.delete-account-card h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.delete-account-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.delete-account-card a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.delete-account-card a:hover {
    color: #1a3a7a;
}

.important-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.important-info h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.important-info ul {
    list-style: none;
    padding: 0;
}

.important-info li {
    color: #856404;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.important-info li:before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
}

.stay-option {
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff9b3 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.stay-option h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stay-option p {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .delete-account-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .delete-account-card h2 {
        font-size: 1.8rem;
    }
    
    .important-info,
    .stay-option {
        padding: 1.5rem;
    }
}

/* Privacy Policy Page */
.privacy-policy-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.privacy-policy-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(12, 34, 78, 0.08);
}

.privacy-policy-card h2 {
    color: var(--secondary-color);
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.privacy-policy-card h2:first-child {
    margin-top: 0;
}

.privacy-policy-card h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.privacy-policy-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.privacy-policy-card ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.privacy-policy-card li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.75rem;
}

.third-party-services {
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.third-party-services li {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.privacy-policy-card a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy-card a:hover {
    color: #1a3a7a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .privacy-policy-card h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .privacy-policy-card h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .privacy-policy-card p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .third-party-services {
        padding: 1rem 1.5rem;
        margin: 1rem 0;
    }
}

/* Terms and Conditions Page */
.terms-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.terms-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(12, 34, 78, 0.08);
}

.terms-card h2 {
    color: var(--secondary-color);
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.terms-card h2:first-child {
    margin-top: 0;
}

.terms-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.terms-card ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.terms-card li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.75rem;
}

.terms-card a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-card a:hover {
    color: #1a3a7a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .terms-card h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-card p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .third-party-services {
        padding: 1rem 1.5rem;
        margin: 1rem 0;
    }
} 