/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--flipt-primary-red);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 4px;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.sr-only-focusable:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0.25rem 0.5rem !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}

/* Focus Management */
*:focus {
    outline: 2px solid var(--flipt-primary-red);
    outline-offset: 2px;
}

.navbar-nav .nav-link:focus,
.footer-nav a:focus,
.cta-button:focus,
.contact-link:focus {
    outline: 3px solid var(--flipt-primary-red);
    outline-offset: 3px;
    background: rgba(227, 44, 35, 0.1);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --flipt-text-primary: #000000;
        --flipt-text-secondary: #000000;
        --flipt-background-primary: #ffffff;
        --flipt-background-secondary: #ffffff;
        --flipt-border-light: #000000;
    }
    
    .navbar, .footer {
        border: 2px solid #000000;
    }
    
    .team-card, .advisor-card, .feature-card, .content-card, .contact-item {
        border: 2px solid #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-element {
        animation: none !important;
        transform: none !important;
    }
    
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

:root {
    --flipt-primary-red: #e32c23;
    --flipt-secondary-coral: #E17055;
    --flipt-dark-red: #B71C1C;
    --flipt-success-green: #00B894;
    --flipt-text-primary: #1a1a1a;
    --flipt-text-secondary: #4a5568;
    --flipt-text-light: #718096;
    --flipt-background-primary: #ffffff;
    --flipt-background-secondary: #f7fafc;
    --flipt-background-dark: #1a202c;
    --flipt-border-light: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #e32c23 0%, #E17055 100%);
    --gradient-bg: linear-gradient(135deg, rgba(227, 44, 35, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    --shadow-xs: 0 0 0 1px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--flipt-text-primary);
    background: var(--flipt-background-primary);
    margin: 0;
    padding: 0;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(227, 44, 35, 0.1);
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease;
}

/* Navigation - Increased height by 20% */
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(227, 44, 35, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem 0; /* Increased from 1rem to 1.2rem (20% increase) */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.navbar.scrolled {
    padding: 0.9rem 0; /* Increased from 0.75rem to 0.9rem (20% increase) */
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-lg);
}

.navbar-brand img {
    height: 75px; /* Increased from 60px to 75px (87.5% increase from original 40px) */
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--flipt-text-primary) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--flipt-primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--flipt-primary-red) !important;
    background: rgba(227, 44, 35, 0.05);
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

/* Hero Section - Reduced height by 40% and positioned right below navbar */
.hero {
    min-height: 60vh; /* Reduced from 100vh to 60vh (40% reduction) */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        radial-gradient(ellipse at top, rgba(227, 44, 35, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    overflow: hidden;
    margin-top: 80px; /* Exact height to position right below navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(227,44,35,0.05)" stroke-width="1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grid)"/></svg>') center/cover;
    opacity: 0.3;
}

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

.hero-title {
    font-size: clamp(2rem, 5.33vw, 4.67rem);
    font-weight: 900;
    line-height: 1.1; /* Increased from 0.9 to provide more space for descenders */
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--flipt-text-primary) 0%, var(--flipt-primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    padding-bottom: 0.1em; /* Add padding to prevent descender clipping */
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--flipt-text-secondary);
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 1s ease 0.5s forwards;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--flipt-primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-updated {
    font-size: 1rem;
    color: var(--flipt-primary-red);
    font-weight: 600;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.floating-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: float 20s ease-in-out infinite;
}

.floating-square {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--flipt-primary-red), transparent);
    transform: rotate(45deg);
    animation: float 15s ease-in-out infinite reverse;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background: var(--flipt-background-secondary);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 44, 35, 0.2), transparent);
}

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

.section-title {
    font-size: clamp(1.67rem, 4vw, 2.67rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--flipt-text-primary) 0%, var(--flipt-primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--flipt-text-secondary);
}

.section-content p {
    margin-bottom: 1.5rem;
}

/* Special Red Section */
.special-section {
    background: var(--gradient-primary) !important;
    color: white;
    position: relative;
    overflow: hidden;
}

.special-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.special-section .section-title {
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}

.special-section .section-content {
    color: rgba(255, 255, 255, 0.9);
}

.special-section .section-divider {
    background: white;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--flipt-primary-red);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-2xl);
    text-decoration: none;
    color: var(--flipt-primary-red);
}

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

/* Team Section */
.team-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(227, 44, 35, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(227, 44, 35, 0.05), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-2xl);
}

.team-card:hover::before {
    opacity: 1;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--flipt-text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.team-role {
    font-size: 0.9rem;
    color: var(--flipt-primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Advisors Grid */
.advisor-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(227, 44, 35, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.advisor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.advisor-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--flipt-text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.advisor-title {
    font-size: 0.875rem;
    color: var(--flipt-text-secondary);
    line-height: 1.5;
}

/* Features Grid */
.feature-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(227, 44, 35, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(227, 44, 35, 0.05), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--flipt-text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.feature-description {
    color: var(--flipt-text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(227, 44, 35, 0.1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.welcome-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.welcome-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.welcome-banner p {
    font-size: 1.125rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.content-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--flipt-text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.5rem;
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.content-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--flipt-primary-red);
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content-card p {
    margin-bottom: 1.5rem;
    color: var(--flipt-text-secondary);
    line-height: 1.8;
}

.content-card ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--flipt-text-secondary);
}

.content-card li {
    margin-bottom: 0.5rem;
}

.content-card dl {
    margin: 1rem 0 1.5rem;
}

.content-card dt {
    margin-bottom: 0.5rem;
    color: var(--flipt-text-primary);
}

.content-card dd {
    margin-left: 1rem;
    margin-bottom: 1rem;
    color: var(--flipt-text-secondary);
}

.content-card strong {
    color: var(--flipt-text-primary);
    font-weight: 700;
}

.content-card a {
    color: var(--flipt-primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.content-card a:hover {
    color: var(--flipt-dark-red);
    text-decoration: underline;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(227, 44, 35, 0.05), rgba(225, 112, 85, 0.05));
    border-left: 4px solid var(--flipt-primary-red);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--flipt-text-primary);
}

.contact-box {
    background: var(--flipt-background-secondary);
    border: 1px solid var(--flipt-border-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-box h4 {
    color: var(--flipt-primary-red);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-info {
    background: var(--flipt-background-secondary);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--flipt-border-light);
}

.contact-info h4 {
    color: var(--flipt-primary-red);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.caps-section {
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(227, 44, 35, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--flipt-primary-red);
}

/* Contact Items */
.contact-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(227, 44, 35, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(227, 44, 35, 0.05), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--flipt-text-primary) 0%, var(--flipt-primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item-email {
    font-size: 1.5rem;
    color: var(--flipt-text-secondary);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.contact-link {
    color: var(--flipt-primary-red);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--flipt-dark-red);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--flipt-background-dark);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--flipt-primary-red), transparent);
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 80px; /* Reduced from 150px to 80px (46% reduction) */
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-nav a:hover {
    color: var(--flipt-primary-red);
}

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

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Terms specific styles */
.terms-content {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(227, 44, 35, 0.1);
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.section-title.terms-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--flipt-primary-red);
    margin: 2.5rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 1rem;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--flipt-primary-red) !important;
    background-clip: unset !important;
}

.section-title.terms-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--flipt-primary-red);
    border-radius: 2px;
}

.section-title.terms-section-title:first-of-type {
    margin-top: 0;
}

/* Last updated styles */
.last-updated {
    font-size: 0.875rem;
    color: var(--flipt-text-light);
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-card, .terms-content {
        padding: 2rem;
    }
    
    .welcome-banner {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-item-title {
        font-size: 1.2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    /* Mobile hero adjustments - maintaining 40% reduction from original mobile height */
    .hero {
        min-height: 36vh; /* Reduced from 60vh for mobile */
        max-height: 36vh;
        height: 36vh;
        padding: 0.7rem 0;
        margin-top: 70px; /* Adjust for mobile navbar height */
    }
    
    .team-avatar {
        width: 150px;
        height: 150px;
    }
    
    .advisor-avatar {
        width: 105px;
        height: 105px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Mobile navbar adjustments - maintaining 20% increase */
    .navbar {
        padding: 1.2rem 0; /* Keeping the 20% increase on mobile */
    }
    
    .navbar.scrolled {
        padding: 0.9rem 0; /* Keeping the 20% increase on mobile */
    }
}