/* CSS Variables matching the design */
:root {
    --primary-purple: #A401DB;
    --primary-purple-dark: #8B00C4;
    --accent-yellow: #FDE047;
    --accent-yellow-hover: #FACC15;
    --text-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light-gray: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-cream: #FEF3C7;
    --bg-light-green: #D1FAE5;
    --bg-light-purple: #F3E8FF;
    --border-light: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Font families for different elements */
h1, h2, h3, h4, h5, h6, .heading {
    font-family: 'Source Serif Pro', 'Playfair Display', Georgia, serif;
}

p, span, div, a, button, input, .text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Source Serif Pro', 'Playfair Display', Georgia, serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1F2937;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

/* Mobile Menu Drawer */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-purple);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1F2937;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: #1F2937;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.mobile-nav-links a:hover {
    color: #A401DB;
}

/* Hero Section */
.hero {
    background: var(--primary-purple);
    color: var(--text-white);
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 0 rgba(0, 0, 0, 0.2),
        0 3px 0 rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 6px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    transform: translateZ(0);
}

@keyframes heroGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.hero-title {
    animation: heroGlow 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    opacity: 0.9;
    width:50%;
    margin-left:auto;
    margin-right:auto;
}

/* URL Input Section */
.url-section {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.url-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    padding-right: 140px; /* Make space for button */
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    outline: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
}

.url-input::placeholder {
    color: var(--text-light-gray);
}

.download-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.875rem 1.75rem;
    background: #FFD31F;
    color: var(--text-dark);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
}

.download-btn:hover {
    background: #E6BE1C;
    transform: translateY(-50%) translateY(-1px);
    box-shadow: var(--shadow-md);
}

.supported-text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.stats {
    background: var(--primary-purple);
    text-align: center;
    padding: 6rem 0;
}

.stats-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--text-white);
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.stat-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* How to Use Section */
.how-to-use {
    background: var(--bg-cream);
    padding: 6rem 0rem 10rem 0rem;
}

.how-to-use .container {
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-dark);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding:0px 15px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left:200px;
    margin-right: auto;
}

.step-card {
    background: transparent;
    border-radius: 0;
    padding:20px 5px;
    text-align: left;
    box-shadow: none;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 1rem 0;
}

.step-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.step-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: 'DM Sans', sans-serif;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 320px;
    min-height: 3.4em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow-wrap: break-word;
}

/* Instructions Section */
.instructions {
    padding: 6rem 0;
    background:#F9F9F9;
    position: relative;
}

.instructions::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #E5E7EB 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.instructions::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #E5E7EB 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.instructions-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 0rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.phone-mockup {
    position: relative;
    width: 100%;
    display: flex;
    align-items:right;
    justify-content:right;
}

.phone-mockup img {
    width:210px;
    height: auto;
    object-fit: contain;
    border-radius: 2rem;
}

.instructions-text {
    padding-left: 2rem;
}

.instructions-text h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.instructions-text p {
    
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 0;
    max-width: 400px;
    min-height: 3.4em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow-wrap: break-word;
}

/* TikTok Section - Special Layout */
.tiktok-section {
    padding: 2rem 0;
    position: relative;
     background:#F9F9F9;
}

.tiktok-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #E5E7EB 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.tiktok-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #E5E7EB 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.tiktok-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 6rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tiktok-mockup {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: left;
    justify-content: left;
}

.tiktok-mockup img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 2rem;
}

.tiktok-text {
    padding-right: 1rem;
    max-width: 450px;
}

.tiktok-text h2 {
    font-size: 1.8rem;
     max-width:400px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tiktok-text p {
    color: var(--text-gray);
    line-height: 1.9;
   margin-bottom:10px;
    display: -webkit-box;
    
     
}

/* Instagram Section - Special Layout (Image on Left) */
.instagram-section {
    padding: 2rem 0;
background:#F9F9F9;
     position: relative;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #E5E7EB 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.instagram-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #E5E7EB 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.instagram-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.instagram-mockup {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-mockup img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 2rem;
}

.instagram-text {
    padding-left: 2rem;
}

.instagram-text h2 {
    font-size: 1.8rem;
     max-width:400px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.instagram-text p {
    color: var(--text-gray);
   line-height: 1.9;
   margin-bottom:10px;
    max-width: 400px;
   
}

/* Facebook Section - Special Layout (Image on Right) */
.facebook-section {
    padding: 2rem 0;
background:#F9F9F9;
     position: relative;
}

.facebook-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #E5E7EB 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.facebook-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #E5E7EB 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.facebook-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 6rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.facebook-mockup {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-mockup img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 2rem;
}

.facebook-text {
    padding-right: 2rem;
}

.facebook-text h2 {
    font-size: 1.8rem;
    max-width:400px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.facebook-text p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom:10px;
    max-width: 400px;
   
}

/* Platform Sections */
.platform-section {
    padding: 4rem 0;
}

.platform-section:nth-child(even) {
    background: var(--bg-light);
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 3rem;
    align-items: center;
}

.platform-content.reverse {
    grid-template-columns: 200px 1fr;
}

.platform-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.platform-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.feature-item::before {
    content: "✓";
    background: var(--primary-purple);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.platform-icon-large {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto;
}

.tiktok-icon { background: #000; color: white; }
.instagram-icon { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    color: white; 
}
.facebook-icon { background: #1877f2; color: white; }

/* FAQ Section */
.faq {
    background: white;
    padding: 4rem 0;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
   
}

.faq-question {
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width:80%;
    display: none;
}

.faq-item:first-child .faq-answer {
    display: block;
}

.faq-item:first-child .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta {
    background: var(--bg-light-purple);
    text-align: center;
    padding: 4rem 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--primary-purple);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-2xl);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
}

.cta-button:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 4rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    color: var(--text-light-gray);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .steps-grid{
        margin-left:0px;
    }
.stats-title{
    font-size:1.5rem;
}

.faq-answer {
   
     max-width:100%;
    
}

 .cta-title {
    font-size: 1.5rem;
   
}
  .nav-container{
    padding-left:2rem;
    padding-right:2rem;
}
.hero{
    padding-left:0.5rem;
    padding-right:0.5rem;
}
.faq{
   padding:0px 20px;
}
.cta{
    padding-left:0.5rem;
    padding-right:0.5rem;
}
    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        font-weight: 600;
        width: 100%;
    }
    .url-section {
        flex-direction: column;
        border-radius: var(--radius-xl);
        background: transparent;
        box-shadow: none;
        gap: 1rem;
    }

    .url-input {
        width: 100%;
        padding: 1.25rem 1.5rem;
        border-radius: var(--radius-xl);
        background: white;
        box-shadow: var(--shadow-md);
    }

    .download-btn {
        position: static;
        transform: none;
        width: 100%;
        padding: 1.25rem 2rem;
        border-radius: var(--radius-xl);
        font-size: 1rem;
        font-weight: 700;
    }

    .download-btn:hover {
        transform: translateY(-1px);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .instructions-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .phone-mockup {
        width: 100%;
        height: 400px;
        align-items: center;
        justify-content: center;
    }

    .instructions-text {
        padding-left: 0;
    }

    .instructions-text h2 {
        font-size: 1.5rem;
    }

    .tiktok-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .tiktok-mockup {
        width: 100%;
    height: 300px;
  
    
        
    }

    .tiktok-text {
        padding-right: 0;
    }

    .tiktok-text h2 {
        font-size: 1.5rem;
         max-width:100%;
    }

    .instagram-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .instagram-mockup {
        width: 100%;
        height: 300px;
    }

    .instagram-text {
        padding-left: 0;
    }

    .instagram-text h2 {
        font-size: 1.5rem;
         max-width:100%;
    }

    .facebook-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .facebook-mockup {
        width: 100%;
        height: 300px;
    }

    .facebook-text {
        padding-right: 0;
    }

    .facebook-text h2 {
        font-size: 1.5rem;
        max-width:100%;
    }

    .platform-content, .platform-content.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 2rem 0;
    }
     .faq-title {
   
    font-size: 1.5rem;
    padding-top:50px;
   
}

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
        font-weight: 600;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .url-input {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .download-btn {
        padding: 1rem 1.75rem;
        font-size: 0.9rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        /* Keep variables consistent with their names */
        --bg-light: #F9FAFB;
        --text-dark: #1F2937;
        --text-gray: #6B7280;
        --border-light: #E5E7EB;
    }

    .navbar {
        background: white !important;
    }

    .step-card {
        background: transparent !important;
    }
    
    .stats {
        background: var(--text-dark) !important;
    }
}