/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

p {
    margin-bottom: 16px;
    color: #4a4a4a;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #2a2a2a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
    min-width: 140px;
}

.btn-primary {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #007AFF;
    border: 2px solid #007AFF;
}

.btn-secondary:hover {
    background: #007AFF;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    min-width: 200px;
}

/* Floating Logo Button */
.floating-logo-btn {
    position: fixed;
    top: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
}

.floating-logo-btn:hover {
    transform: translateY(-2px) scale(1.05);
}

.floating-logo-img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.floating-logo-btn:hover .floating-logo-img {
    transform: scale(1.1);
}

/* Enhanced firefly glow effect for floating button */
@keyframes fireflyGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 12px rgba(255, 230, 109, 0.8)) drop-shadow(0 0 20px rgba(255, 193, 7, 0.6));
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(255, 230, 109, 1)) drop-shadow(0 0 35px rgba(255, 193, 7, 0.8)) drop-shadow(0 0 50px rgba(255, 235, 59, 0.4));
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-8px);
}

/* WhatsApp Button Animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float {
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 6px 10px;
        right: 60px;
    }
}

@keyframes fireflyPulse {
    0%, 85%, 100% { 
        filter: drop-shadow(0 0 15px rgba(255, 230, 109, 0.9)) drop-shadow(0 0 25px rgba(255, 193, 7, 0.7));
    }
    15%, 25% { 
        filter: drop-shadow(0 0 30px rgba(255, 230, 109, 1)) drop-shadow(0 0 50px rgba(253, 186, 45, 0.9)) drop-shadow(0 0 70px rgba(255, 235, 59, 0.6));
    }
}

.floating-logo-btn {
    animation: 
        fireflyGlow 2s ease-in-out infinite,
        fireflyPulse 4s ease-in-out infinite;
}

.floating-logo-btn:hover {
    animation: none; /* Pause animations on hover for better UX */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-logo-btn {
        width: 50px;
        height: 50px;
        top: 20px;
        left: 20px;
    }
    
    .floating-logo-img {
        width: 30px;
        height: 30px;
    }
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
}

@media (max-width: 768px) {
    .main-header {
        padding: 12px 0;
    }
}

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

.logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 36px;
        max-width: 140px;
    }
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    color: #333;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.hero-headline {
    color: #1a1a1a;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-mockup {
    width: 100%;
    max-width: 350px;
    height: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 9999;
    margin: 0 auto;
}

/* Why Jugnu Section */
.why-jugnu {
    padding: 120px 0;
    background: #ffffff;
}

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

.why-jugnu h2 {
    margin-bottom: 32px;
    color: #1a1a1a;
}

.why-jugnu .lead {
    margin-bottom: 48px;
}

.highlight {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid #e0e8f0;
}

.highlight h3 {
    color: #007AFF;
    font-size: 2rem;
    margin-bottom: 16px;
}

.highlight p {
    font-size: 1.125rem;
    color: #2a2a2a;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

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

.benefit-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.benefit-card h3 {
    color: #1a1a1a;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #4a4a4a;
    font-size: 1rem;
}

/* Use Cases Section */
.use-cases {
    padding: 120px 0;
    background: #ffffff;
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.use-case {
    padding: 32px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e8f2ff;
    transition: transform 0.3s ease;
}

.use-case:hover {
    transform: translateY(-4px);
}

.use-case h3 {
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.use-case p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 120px 0;
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    color: white;
}

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

.testimonial blockquote {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial cite {
    font-size: 1rem;
    opacity: 0.9;
    font-style: normal;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

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

.final-cta h2 {
    color: #1a1a1a;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: #1a1a1a;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007AFF;
}

.footer-copy p {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
        min-width: 160px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .whatsapp-mockup {
        max-width: 280px;
        height: auto;
        z-index: 9999;
    }
    
    section {
        padding: 80px 0 !important;
    }
    
    .highlight {
        padding: 32px 24px;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .use-case {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .testimonial blockquote {
        font-size: 1.25rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.footer-links a:focus {
    outline: 2px solid #007AFF;
    outline-offset: 2px;
}

/* Trusted by Professionals Section */
.trusted-professionals {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.trusted-professionals .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.trusted-professionals .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.professional-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #7c3aed, #f59e0b, #ef4444, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.professional-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.use-case {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.use-case:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.success-metric {
    padding: 12px;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-radius: 12px;
    border-left: 4px solid #10b981;
    font-size: 0.9rem;
    color: #065f46;
    line-height: 1.4;
}

.success-metric strong {
    color: #047857;
    font-weight: 700;
}

.professionals-cta {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

.professionals-cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.professionals-cta p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 24px;
}

/* Responsive Design for Professionals Section */
@media (max-width: 768px) {
    .trusted-professionals {
        padding: 60px 0;
    }
    
    .trusted-professionals .section-title {
        font-size: 2rem;
    }
    
    .professionals-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .professional-card {
        padding: 24px;
    }
    
    .card-icon {
        width: 64px;
        height: 64px;
    }
    
    .professionals-cta {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .trusted-professionals .section-title {
        font-size: 1.75rem;
    }
    
    .trusted-professionals .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .professional-card {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
    }
    
    .professionals-cta h3 {
        font-size: 1.5rem;
    }
    
    .professionals-cta p {
        font-size: 1rem;
    }
}

/* Remove loading spinner */

/* ===== PRIVACY PAGE STYLES ===== */

.privacy-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 80px;
}

.privacy-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 60px;
}

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

.privacy-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.privacy-date,
.privacy-version {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.privacy-content {
    padding-bottom: 80px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.privacy-section {
    padding: 40px 50px;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #10b981;
    display: inline-block;
}

.privacy-section h3 {
    color: #334155;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.privacy-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.privacy-section li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    list-style: none;
}

.privacy-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.privacy-section strong {
    color: #1e293b;
    font-weight: 600;
}

.privacy-section a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #059669;
    text-decoration: underline;
}

.contact-info {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #10b981;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #1e293b;
    display: inline-block;
    min-width: 120px;
}

/* Privacy Page Responsive Design */
@media (max-width: 768px) {
    .privacy-main {
        padding-top: 70px;
    }
    
    .privacy-hero {
        padding: 60px 0 40px;
        margin-bottom: 40px;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .privacy-container {
        margin: 0 20px;
        border-radius: 12px;
    }
    
    .privacy-section {
        padding: 30px 25px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.15rem;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-item strong {
        display: block;
        margin-bottom: 5px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 40px 0 30px;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-subtitle {
        font-size: 1rem;
    }
    
    .privacy-container {
        margin: 0 15px;
    }
    
    .privacy-section {
        padding: 25px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.35rem;
    }
    
    .privacy-section li {
        padding-left: 25px;
    }
    
    .contact-info {
        padding: 15px;
    }
}

/* Table of Contents (if needed) */
.privacy-toc {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.privacy-toc h3 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.privacy-toc ul {
    columns: 2;
    column-gap: 30px;
}

.privacy-toc li {
    break-inside: avoid;
    margin-bottom: 8px;
}

.privacy-toc a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.privacy-toc a:hover {
    color: #10b981;
}

@media (max-width: 768px) {
    .privacy-toc ul {
        columns: 1;
    }
}

/* ===== TERMS OF SERVICE PAGE STYLES ===== */

/* Terms Page Body */
.terms-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* Terms Hero Section */
.terms-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.terms-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.terms-intro {
    font-size: 1.1rem;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Terms Main Content */
.terms-main {
    position: relative;
    z-index: 1;
}

.terms-content {
    padding: 60px 0;
}

.terms-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Terms Table of Contents */
.terms-toc {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.terms-toc h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.terms-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-toc li {
    margin-bottom: 12px;
}

.terms-toc a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.terms-toc a:hover {
    color: #1e293b;
    background: #f1f5f9;
    border-left-color: #FFD700;
    transform: translateX(5px);
}

/* Terms Sections */
.terms-sections {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.terms-section {
    padding: 40px 50px;
    border-bottom: 1px solid #f1f5f9;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    position: relative;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.terms-section h3 {
    color: #334155;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.terms-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.terms-section ul {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 25px;
}

.terms-section li {
    margin-bottom: 8px;
    position: relative;
}

.terms-section li::marker {
    color: #FFD700;
}

.terms-section strong {
    color: #1e293b;
    font-weight: 600;
}

/* Pricing Tables */
.terms-section ul li strong {
    display: inline-block;
    min-width: 180px;
    color: #1e293b;
}

/* Terms Footer */
.terms-footer {
    background: #f8fafc;
    padding: 40px 50px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.terms-footer p {
    color: #64748b;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.terms-footer a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.terms-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .terms-layout {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .terms-section {
        padding: 35px 40px;
    }
}

@media (max-width: 968px) {
    .terms-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .terms-toc {
        position: static;
        order: 2;
        margin-top: 30px;
    }
    
    .terms-sections {
        order: 1;
    }
    
    .terms-title {
        font-size: 2.8rem;
    }
    
    .terms-section {
        padding: 30px 35px;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 60px 0 40px;
    }
    
    .terms-title {
        font-size: 2.2rem;
    }
    
    .terms-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-intro {
        font-size: 1rem;
    }
    
    .terms-content {
        padding: 40px 0;
    }
    
    .terms-section {
        padding: 25px 30px;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .terms-toc {
        padding: 25px;
    }
    
    .terms-footer {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .terms-hero {
        padding: 50px 0 30px;
    }
    
    .terms-title {
        font-size: 1.8rem;
    }
    
    .terms-section {
        padding: 20px 25px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section ul {
        padding-left: 20px;
    }
    
    .terms-toc {
        padding: 20px;
    }
    
    .terms-toc h3 {
        font-size: 1.1rem;
    }
    
    .terms-footer {
        padding: 25px 20px;
    }
}

/* ===== FAQ SECTION STYLES ===== */

.faq {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq h2 {
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #10b981;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 32px 32px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.faq-answer p {
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

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

/* ===== PRICING SECTION STYLES ===== */

.pricing {
    padding: 120px 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    color: #10b981;
    font-size: 1.25rem;
    font-weight: 600;
}

.amount {
    color: #10b981;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    color: #6b7280;
    font-size: 1rem;
}

.contact-price {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-note {
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
}

.pricing-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature i {
    color: #10b981;
    font-size: 1rem;
    min-width: 16px;
}

.feature span {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-cta {
    text-align: center;
}

.pricing-note-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px 0;
    border-top: 1px solid #e2e8f0;
}

.pricing-note-section p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.pricing-note-section p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for FAQ and Pricing */
@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq h2 {
        margin-bottom: 60px;
    }
    
    .faq-question {
        padding: 24px;
    }
    
    .faq-question h3 {
        font-size: 1.125rem;
    }
    
    .faq-answer {
        padding: 0 24px 24px;
    }
    
    .pricing {
        padding: 80px 0;
    }
    
    .pricing h2 {
        margin-bottom: 60px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .contact-price {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        gap: 24px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-header {
        margin-bottom: 30px;
    }
    
    .pricing-features {
        margin-bottom: 30px;
    }
    
    .feature {
        margin-bottom: 12px;
    }
    
    .feature span {
        font-size: 0.9rem;
    }
}