:root {
    --primary: #4CAF50;
    --primary-dark: #3d8b40;
    --white: #FFFFFF;
    --bg-dark: #0f0f12;
    --bg-light: #1a1a21;
    --text-light: #e0e0e0;
    --neon-glow: 0 0 10px rgba(76, 175, 80, 0.7), 0 0 20px rgba(76, 175, 80, 0.5);
    --glass-bg: rgba(26, 26, 33, 0.6);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
}

/* Glassmorphism effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(15, 15, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), #8bc34a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--neon-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.6);
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(15, 15, 18, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 500px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    opacity: 0.6;
    filter: drop-shadow(0 0 5px var(--primary));
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(76,175,80,0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary), #8bc34a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.8;
}

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

.step-card {
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(26, 26, 33, 0.5) 100%);
    z-index: -1;
    border-radius: 20px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(76,175,80,0.03)" d="M0,100 L100,100 L100,0 Q50,20 0,0 Z"></path></svg>');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: -1;
}

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

.feature-card {
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(26, 26, 33, 0.5) 100%);
    z-index: -1;
    border-radius: 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    position: relative;
}

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

.testimonial-card {
    padding: 30px;
    border-radius: 20px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(26, 26, 33, 0.5) 100%);
    z-index: -1;
    border-radius: 20px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card p::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: -20px;
    left: -15px;
    color: rgba(76, 175, 80, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

/* CTA Section */
.cta {
    padding: 80px 0;
}

.cta-content {
    padding: 60px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Terms & Privacy Pages */
.terms-hero, .privacy-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.terms-hero::before, .privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(15, 15, 18, 0) 70%);
    z-index: -1;
}

.terms-hero h1, .privacy-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.terms-hero p, .privacy-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

.terms-content, .privacy-content {
    padding: 80px 0;
    position: relative;
}

.terms-content::before, .privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(76,175,80,0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

.terms-section, .privacy-section {
    margin-bottom: 60px;
}

.terms-section h2, .privacy-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.terms-section h2::after, .privacy-section h2::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    bottom: -8px;
    left: 0;
}

.terms-section h3, .privacy-section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-light);
}

.terms-section p, .privacy-section p, .terms-section ul, .privacy-section ul {
    margin-bottom: 20px;
    opacity: 0.9;
}

.terms-section ul, .privacy-section ul {
    padding-left: 20px;
}

.terms-section li, .privacy-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.terms-section li::before, .privacy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
}

.highlight-box {
    padding: 25px;
    border-left: 3px solid var(--primary);
    background: rgba(76, 175, 80, 0.05);
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.warning-box {
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary);
    margin: 20px 0;
}

.warning-box i {
    color: var(--primary);
    margin-right: 10px;
}

.kyc-flow {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.kyc-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.kyc-step::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 24px;
}

.kyc-step:last-child::after {
    display: none;
}

.kyc-icon {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary);
}
/* ===== Contact Page Styles ===== */
.contact-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(15, 15, 18, 0) 70%);
    z-index: -1;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 0;
    position: relative;
}

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

.contact-form {
    padding: 40px;
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    padding: 40px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--primary);
}

.info-text h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.info-text p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.info-text a {
    color: var(--primary);
    text-decoration: none;
}

/* Thank You Page Styles */
.thank-you-hero {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.thank-you-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(15, 15, 18, 0) 70%);
    z-index: -1;
}

.thank-you-content {
    padding: 60px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.thank-you-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.thank-you-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.faq-preview {
    padding: 60px 0;
    background: rgba(76, 175, 80, 0.03);
}

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

.faq-card {
    padding: 30px;
    text-align: center;
}

.faq-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-card p {
    margin-bottom: 20px;
}

/* ===== FAQ Page Styles ===== */
.faq-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(15, 15, 18, 0) 70%);
    z-index: -1;
}

.faq-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

.faq-content {
    padding: 80px 0;
    position: relative;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-category-btn {
    padding: 10px 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 30px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary);
    color: var(--white);
}

.faq-section {
    margin-bottom: 60px;
    display: none;
}

.faq-section:first-of-type {
    display: block;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    bottom: -8px;
    left: 0;
}

.faq-accordion {
    display: grid;
    gap: 20px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p,
.faq-answer ol,
.faq-answer ul {
    margin-bottom: 20px;
}

.faq-answer ol,
.faq-answer ul {
    padding-left: 20px;
}

.faq-support {
    margin-top: 60px;
    text-align: center;
}

.support-card {
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.support-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.support-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.support-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--bg-light);
    padding: 80px 0 30px;
    position: relative;
}

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

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    bottom: -8px;
    left: 0;
}

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

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-column ul li a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

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

.copyright {
    opacity: 0.7;
    font-size: 14px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 50px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .kyc-step {
        min-width: 100%;
        margin-bottom: 30px;
    }
    
    .kyc-step::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -25px;
        left: auto;
        transform: translateX(50%);
    }
        
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-categories {
        flex-direction: column;
        align-items: center;
    }

    .faq-category-btn {
        width: 100%;
        text-align: center;
    }
        
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .section-title h2, .terms-hero h1, .privacy-hero h1 {
        font-size: 36px;
    }
    
    .terms-section h2, .privacy-section h2 {
        font-size: 28px;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .contact-hero h1,
    .faq-hero h1 {
        font-size: 36px;
    }

    .contact-form,
    .contact-info {
        padding: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
}