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

:root {
    --primary-color: #5865f2;
    --secondary-color: #7289da;
    --accent-color: #eb459e;
    --success-color: #3ba55d;
    --warning-color: #faa61a;

    --dark-bg: #1e1f22;
    --darker-bg: #111214;
    --card-bg: #2b2d31;
    --card-hover: #313338;
    --elevated-bg: #383a40;

    --text-primary: #f2f3f5;
    --text-secondary: #b5bac1;
    --text-muted: #6d6f78;
    --text-link: #00a8fc;

    --border-color: #3f4147;
    --border-subtle: #26272b;
    --divider: #1e1f22;

    --gradient-1: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    --gradient-2: linear-gradient(135deg, #eb459e 0%, #5865f2 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.support-page {
    background: var(--darker-bg);
    position: relative;
}

body.support-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

body.support-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(88, 101, 242, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(235, 69, 158, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    overflow: hidden;
    background: var(--darker-bg);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 40px 40px;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(88, 101, 242, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(235, 69, 158, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-logo-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-logo {
    width: 80px;
    height: 80px;
    animation: fadeInUp 0.6s ease;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-primary);
    animation: fadeInUp 0.6s ease;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.glitch {
    position: relative;
}

.subtitle {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
    position: relative;
    padding: 1rem 2rem;
    border: 1px dashed;
    border-radius: 45px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    border-style: solid;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    //border-color: var(--border-color);
    border: 0px dashed;
}

.btn-secondary:hover {
    background: var(--card-bg);
    //border-color: var(--text-primary);
}

.btn-glow {
    display: none;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.platforms {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.platform-icons {
    display: flex;
    gap: 0rem;
}

.platform-icon {
    padding: 0.5rem 0.5rem;
    background: transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.platform-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.platform-icon svg {
    display: block;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.floating-card {
    position: relative;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-8px);
}

.floating-card img,
.floating-card video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.floating-card:hover img,
.floating-card:hover video {
    /* No box-shadow on hover */
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.card-glow {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-subtle);
    overflow: hidden;
}

.features-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.features-carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-features 40s linear infinite;
    will-change: transform;
}

.features-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-features {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.feature-card {
    flex: 0 0 320px;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
}

.feature-card:hover {
    border-color: var(--primary-color);
    background: var(--card-hover);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-subtle);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    animation: fadeInUp 0.6s ease both;
}

.step:nth-child(2) {
    animation-delay: 0.1s;
}

.step:nth-child(4) {
    animation-delay: 0.2s;
}

.step:nth-child(6) {
    animation-delay: 0.3s;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: monospace;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

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

.connection-line {
    width: 60px;
    height: 2px;
    background: transparent;
    border-top: 2px dashed var(--border-color);
    position: relative;
}

.node-preview {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    border: 2px solid;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.node-preview.trigger {
    background: transparent;
    border-color: #eb459e;
    color: #eb459e;
}

.node-preview.trigger:hover {
    background: rgba(235, 69, 158, 0.1);
}

.node-preview.action {
    background: transparent;
    border-color: #5865f2;
    color: #5865f2;
}

.node-preview.action:hover {
    background: rgba(88, 101, 242, 0.1);
}

.node-preview.utility {
    background: transparent;
    border-color: #faa61a;
    color: #faa61a;
}

.node-preview.utility:hover {
    background: rgba(250, 166, 26, 0.1);
}

/* Gallery Section */
.gallery {
    padding: 2rem 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-subtle);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:hover {

}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-subtle);
    overflow: hidden;
}

.use-cases-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.use-cases-carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-use-cases 35s linear infinite;
    will-change: transform;
}

.use-cases-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-use-cases {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.use-case {
    flex: 0 0 280px;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.use-case:hover {
    border-color: var(--primary-color);
    background: var(--card-hover);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-case h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.use-case p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.cta::before {
    display: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    padding: 2rem 0 1rem;
    background: var(--darker-bg);
}

.footer-transparent {
    background: transparent;
    position: relative;
    z-index: 1;
}

.footer-transparent .footer-bottom {
    border-top: none;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    position: relative;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
    }

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

    .platforms {
        justify-content: center;
    }

    .steps {
        flex-direction: column;
    }

    .connection-line {
        width: 2px;
        height: 40px;
        border-top: none;
        border-left: 2px dashed var(--border-color);
    }

    .connection-line::after {
        content: '↓';
        right: auto;
        bottom: -18px;
        top: auto;
        left: -7px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-logo {
        width: 60px;
        height: 60px;
    }

    .subtitle {
        font-size: 1.4rem;
    }

    .description {
        font-size: 1rem;
        max-width: 100%;
    }

    .video-wrapper {
        border-radius: 8px;
        margin-top: 2rem;
    }

    .video-wrapper iframe {
        border-radius: 8px;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        flex: 0 0 280px;
    }

    .use-case {
        flex: 0 0 260px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-card {
        flex: 0 0 280px;
    }

    .use-case {
        flex: 0 0 260px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-logo {
        width: 50px;
        height: 50px;
    }

    .hero-logo-title {
        gap: 1rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .video-wrapper {
        border-radius: 6px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .video-wrapper iframe {
        border-radius: 6px;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 1.1rem 2rem;
    }

    .feature-card {
        flex: 0 0 240px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .use-case {
        flex: 0 0 220px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Support Page Styles */
.support-hero {
    position: relative;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    overflow: visible;
}

.support-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.support-header {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease;
}

.support-header .hero-logo-title {
    justify-content: center;
}

.support-main {
    max-width: 700px;
    margin: 0 auto;
}

.support-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.support-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.email-container {
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.email-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    padding: 1.2rem 2rem;
    min-width: 416px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.email-box:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.email-box:active {
    transform: translateY(-1px);
}

.email-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.email-text {
    flex: 1;
    font-size: 1.45rem;
    color: #e8eaff;
    font-weight: 300;
    user-select: none;
    letter-spacing: 0.15em;
    text-align: center;
}

.copy-icon {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: all 0.2s ease;
    width: 18px;
    height: 18px;
}

.email-box:hover .copy-icon {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.copy-notification {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--success-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.72rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive for Support Page */
@media (max-width: 768px) {
    .support-title {
        font-size: 1.75rem;
    }

    .support-description {
        font-size: 1rem;
    }

    .email-box {
        padding: 1rem 1.2rem;
        flex-direction: column;
        gap: 0.6rem;
    }

    .email-text {
        font-size: 0.88rem;
    }

    .copy-notification {
        top: -36px;
        font-size: 0.68rem;
    }
}

/* Privacy Page Styles */
.privacy-page {
    background: var(--darker-bg);
    position: relative;
}

.privacy-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.privacy-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(88, 101, 242, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(235, 69, 158, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.privacy-hero {
    position: relative;
    padding: 4rem 0;
    overflow: visible;
    min-height: 100vh;
}

.privacy-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease;
}

.privacy-header .hero-logo-title {
    justify-content: center;
    margin-bottom: 0;
}

.privacy-header h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.privacy-main {
    background: rgba(43, 45, 49, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.privacy-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.privacy-document {
    color: var(--text-secondary);
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.privacy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-list {
    list-style: none;
    margin-left: 0;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

/* Responsive for Privacy Page */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 3rem;
    }

    .privacy-main {
        padding: 2rem;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.4rem;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }

    .privacy-section ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 2.5rem;
    }

    .privacy-main {
        padding: 1.5rem;
    }

    .privacy-title {
        font-size: 1.75rem;
    }

    .privacy-section h2 {
        font-size: 1.25rem;
    }

    .privacy-section h3 {
        font-size: 1rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.9rem;
    }

    .privacy-section ul {
        margin-left: 1rem;
    }
}

