:root {
    --primary-color: #0F52BA;
    /* Trustworthy Blue */
    --primary-dark: #0a3d8f;
    --accent-color: #28B463;
    /* Growth Green */
    --text-main: #1A202C;
    --text-muted: #4A5568;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(15, 82, 186, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 82, 186, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #EBF8FF;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Navigation */
.navbar {
    padding: 24px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    height: 100px;
    /* Adjust based on navbar height */
}

.logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: radial-gradient(circle at top right, #EBF8FF 0%, transparent 40%),
        radial-gradient(circle at bottom left, #F0FFF4 0%, transparent 40%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-store-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-blob {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #E6FFFA, #EBF8FF);
    border-radius: 50%;
    filter: blur(60px);
    position: absolute;
    z-index: -1;
}

.glass-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
}

.glass-card .icon {
    font-size: 1.5rem;
    background: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.glass-card .details {
    display: flex;
    flex-direction: column;
}

.glass-card .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.glass-card .value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.float-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px auto;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

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

/* Services Cards */
.card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #EBF8FF;
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Why Us */
.why-us {
    background-color: var(--bg-light);
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.check-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

/* Process */
.process {
    background-color: var(--white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: #E2E8F0;
    margin-top: 25px;
}

.step h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.95rem;
}

/* Trust */
.trust {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: center;
}

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

.trust-item h4 {
    margin-bottom: 8px;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
}

.cta-box {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 32px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.2rem;
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-large:hover {
    background-color: #F7FAFC;
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #1A202C;
    color: white;
    padding: 64px 0 32px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: #A0AEC0;
}

.footer-links {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.link-col h4 {
    margin-bottom: 24px;
    color: #E2E8F0;
}

.link-col a {
    display: block;
    margin-bottom: 12px;
    color: #A0AEC0;
}

.link-col a:hover {
    color: var(--white);
}

.copyright p {
    color: #718096;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .hero-store-buttons {
        justify-content: center;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        height: 350px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid #f1f1f1;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
    }

    .mobile-toggle {
        display: flex;
    }

    .steps-container {
        flex-direction: column;
        gap: 32px;
    }

    .step-line {
        display: none;
    }

    .step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

.heart-beat {
    display: inline-block;
    animation: heartBeat 1.5s infinite linear;
    vertical-align: middle;
}

.built-with {
    margin-top: 8px;
    font-size: 1rem;
    color: #718096;
}

/* Footer Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 48px;
}

.footer-contact h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    width: 350px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-card .icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(128, 90, 213, 0.2);
    /* Purple tint */
    color: #FFFFFF;
    /* Lighter Purple */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-bottom: 0;
    /* Override generic icon-box margin */
}

/* Force User Icon to be white (override default emoji blue) */
.contact-card:last-child .icon-box {
    color: transparent;
    text-shadow: 0 0 0 white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info .label {
    font-size: 0.75rem;
    color: #A0AEC0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-info .value {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.contact-info .value:hover {
    color: #9F7AEA;
    text-decoration: underline;
}

@media (max-width: 768px) {

    /* Prevent horizontal overflow */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* Typography with proper scaling */
    h1 {
        font-size: 1.875rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    h3 {
        font-size: 1.25rem;
        word-wrap: break-word;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
    }

    /* Container with better mobile spacing */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 180px;
        padding-bottom: 60px;
    }

    /* Grid Layouts */
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Hero Visual */
    .hero-visual {
        height: 280px;
        width: 100%;
    }

    /* Glass Cards - Mobile Sizing */
    .glass-card {
        padding: 10px 14px;
        font-size: 0.75rem;
        gap: 10px;
        max-width: 160px;
    }

    .glass-card .icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .glass-card .label {
        font-size: 0.625rem;
    }

    .glass-card .value {
        font-size: 0.85rem;
    }

    /* Adjust positioning for mobile */
    .float-1 {
        top: 15%;
        right: 5%;
    }

    .float-2 {
        bottom: 25%;
        left: 5%;
    }

    /* Buttons */
    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    /* Hero Store Buttons */
    .hero-store-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    /* CTA Box */
    .cta-box {
        padding: 48px 20px;
        border-radius: 16px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
    }

    /* Logo Mobile Sizing */
    .logo {
        height: 70px;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 16px 0;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }

    /* Footer Contact Cards */
    .contact-cards {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .contact-card {
        width: 100%;
        min-width: 0;
        padding: 20px;
    }

    /* Footer Store Buttons */
    .store-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .store-btn {
        width: 100%;
        min-width: 0;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
    }

    /* Footer Social */
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    /* Footer Download */
    .footer-download h3 {
        font-size: 1.25rem;
    }

    /* Footer Social Heading */
    .footer-social h3 {
        font-size: 1.25rem;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Cards */
    .card {
        padding: 24px 18px;
    }

    .card h3 {
        font-size: 1.25rem;
    }

    /* Icon boxes */
    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    /* Feature Items */
    .feature-item {
        gap: 16px;
    }

    /* Trust Section */
    .trust {
        padding: 60px 0;
    }

    .trust-grid {
        gap: 24px;
    }

    /* CTA Final */
    .cta-final {
        padding: 60px 0;
    }

    /* Copyright Text */
    .copyright p {
        font-size: 0.85rem;
        text-align: center;
    }

    /* Better touch targets */
    a,
    button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
    }
}

/* Footer Social */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

/* Footer Download */
.footer-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.footer-download h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.store-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    border-color: var(--text-main);
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.small-text {
    font-size: 0.65rem;
    text-transform: uppercase;
}

.big-text {
    font-size: 1rem;
    font-weight: 600;
}

/* Other Social Icons */


.footer-social h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.youtube:hover {
    background-color: #FF0000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.linkedin:hover {
    background-color: #0077B5;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}

.x-twitter:hover {
    background-color: #000000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.reddit:hover {
    background-color: #FF4500;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

/* Privacy Policy Page */
.privacy-content {
    padding-top: 140px;
    padding-bottom: 80px;
    max-width: 800px;
    /* Better readability for text-heavy pages */
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.privacy-content h3 {
    font-size: 1.4rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-content ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.privacy-content li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.privacy-content p {
    margin-bottom: 16px;
}

/* Help & Support Page */
.help-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: radial-gradient(circle at top right, #EBF8FF 0%, transparent 40%),
        radial-gradient(circle at bottom left, #F0FFF4 0%, transparent 40%);
}

.support-card {
    text-align: center;
    position: relative;
}

.support-card .icon-box {
    margin: 0 auto 24px auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.support-card p {
    margin-bottom: 24px;
    min-height: 60px;
}

.support-cta {
    margin-top: auto;
}

.support-cta .btn {
    width: 100%;
    max-width: 220px;
}

/* Contact Grid for Help Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-icon {
    margin-bottom: 24px;
}

.contact-info-card .icon-box {
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.contact-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-email {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-badge {
    background-color: #EBF8FF;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-block;
}

.contact-badge span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

.faq-item a:hover {
    color: var(--primary-dark);
}

/* Responsive adjustments for Help & Support */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 32px 24px;
    }

    .support-card p {
        min-height: auto;
    }
}