﻿
:root {
    --font-main: 'Poppins', sans-serif;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --max-width: 1920px;
    --container-width: 1520px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-main);
    background-color: #fff;
    color: var(--color-black);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}


a, button {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}


.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}


.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    z-index: 100;
    background: transparent;
    display: flex;
    align-items: center;
}

    .header .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav ul {
    display: flex;
    gap: 60px;
}

.nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: 300;
    transition: color 0.3s ease;
}

    .nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: #fff;
        transition: width 0.3s ease;
    }

    .nav a:hover,
    .nav a:focus {
        color: rgba(255, 255, 255, 0.92);
        outline: none;
    }

        .nav a:hover::after,
        .nav a:focus::after {
            width: 100%;
        }

    .nav a.active {
        color: #fff;
        font-weight: 400;
    }

        .nav a.active::after {
            width: 100%;
        }

.mobile-menu-btn {
    display: none;
}


.hero {
    position: relative;
    width: 100%;
    min-height: 737px;
    background-color: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(70.53% 28.69% at 100% 100%, rgba(165, 154, 137, 0.75) 0%, rgba(0, 0, 0, 0) 100%), radial-gradient(98.27% 42.67% at 0% 0%, rgba(205, 4, 4, 0.76) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    opacity: 0.6;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding-top: 60px;
}

.hero-visual {
    position: relative;
    flex: 1;
    max-width: 800px;
}

.red-blur-effect {
    position: absolute;
    width: 205px;
    height: 285px;
    left: 100px;
    top: 100px;
    background: rgba(255, 0, 0, 0.8);
    filter: blur(100px);
    z-index: -1;
}

.hero-content {
    flex: 0 0 562px;
    max-width: 562px;
    width: 100%;
}

    .hero-content h1 {
        font-size: 45px;
        font-weight: 300;
        line-height: 68px;
        color: #FFF;
    }


.download-section {
    padding: 100px 0;
    background: #FFF;
    overflow: visible;
}

.download-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-visual {
    flex: 1;
    position: relative;
    z-index: 1;
}

    .download-visual img {
        width: 150%;
        max-width: none;
        margin-left: -180px;
        margin-top: -80px;
        height: auto;
        display: block;
    }

.download-content {
    flex: 0 0 898px;
    max-width: 898px;
    width: 100%;
    position: relative;
    z-index: 2;
}

    .download-content h2 {
        font-size: 45px;
        font-weight: 300;
        margin-bottom: 20px;
        line-height: 68px;
    }

    .download-content p {
        font-size: 30px;
        font-weight: 300;
        margin-bottom: 50px;
        line-height: 146%;
    }

.store-buttons {
    display: flex;
    gap: 24px;
}

.btn-store {
    display: block;
    width: 220px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .btn-store:hover {
        transform: translateY(-5px);
    }

    .btn-store img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
    }


.features-section {
    padding: 80px 0;
    box-shadow: 0px 4px 46px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

    .section-header h2 {
        font-size: 45px;
        font-weight: 300;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 30px;
        font-weight: 300;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 150px;
    row-gap: 100px;
    max-width: 1260px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

    .icon-box img {
        width: 100%;
    }

.feature-text h3 {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 20px;
    font-weight: 300;
    color: #000;
}


.blog-section {
    padding: 100px 0;
}

.blog-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.blog-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .blog-brand h2 {
        font-size: 45px;
        font-weight: 300;
    }

.blog-tabs {
    font-size: 30px;
    font-weight: 300;
    color: #AEAEAE;
    cursor: pointer;
}

    .blog-tabs .active {
        color: #000;
        font-weight: 400;
    }

    .blog-tabs .divider {
        margin: 0 10px;
    }

.blog-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.blog-text-content {
    flex: 0 0 48%;
    max-width: 48%;
}

    .blog-text-content h3 {
        font-size: 30px;
        font-weight: 300;
        margin-bottom: 20px;
        line-height: 1.2;
        margin-top: 0;
    }

    .blog-text-content p {
        font-size: 20px;
        font-weight: 300;
        line-height: 32px;
        margin-bottom: 20px;
    }

.blog-visual {
    flex: 0 0 48%;
    max-width: 48%;
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding-top: 50px;
    padding-bottom: 30px;
    font-size: 14px;
    position: relative;
    width: 100%;
}

    .footer::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 0;
        background: #000;
        z-index: -1;
        transition: height 0.3s ease;
    }

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 140px;
}

.footer-left {
    flex-shrink: 0;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
}

.slogan {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-right {
    display: flex;
    gap: 100px;
}

.f-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .f-col h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 30px;
        margin-top: 0;
        width: 100%;
        color: #FFFFFF;
    }

    .f-col ul {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }

        .f-col ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            font-weight: 300;
            color: #e0e0e0;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            width: 100%;
        }

            .f-col ul li a {
                display: flex;
                align-items: center;
                gap: 12px;
                transition: color 0.2s;
                text-decoration: none;
                color: inherit;
            }

                .f-col ul li a:hover {
                    color: #fff;
                }

    .f-col svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.fb-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.copyright {
    font-size: 13px;
    color: #FFFFFF;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    gap: 25px;
}

    .legal-links a {
        font-size: 13px;
        font-weight: 300;
        text-decoration: none;
        color: #7E7E7E;
        transition: color 0.2s ease;
    }

        .legal-links a:hover,
        .legal-links a:focus {
            color: #B3B3B3;
        }

.argede-logo {
    width: 80px;
    height: auto;
    display: block;
}


@media (max-width: 1200px) {
    .hero-content h1, .download-content h2, .section-header h2 {
        font-size: 36px;
    }

    .hero-content, .download-content {
        flex: auto;
        max-width: 100%;
    }

    .download-visual img {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .blog-layout {
        flex-direction: column;
        gap: 40px;
    }

    .blog-text-content, .blog-visual {
        flex: auto;
        max-width: 100%;
    }

    .footer {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 60px;
        padding-bottom: 40px;
    }

    .footer-right {
        flex-wrap: wrap;
        gap: 50px;
        width: 100%;
    }
}




@media (max-width: 768px) {


    .header {
        height: 80px;
        position: absolute;
    }

    .logo img {
        height: 40px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        background: #000;
        width: 70%;
        max-width: 360px;
        height: 100vh;
        padding: 100px 30px;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

        .nav.active {
            display: block;
        }

        .nav ul {
            flex-direction: column;
            gap: 30px;
            align-items: flex-start;
            text-align: left;
            width: 100%;
        }

    body.menu-open {
        overflow: hidden;
    }

    .nav ul li a {
        font-size: 24px;
        color: #fff;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        z-index: 1000;
    }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 5px 0;
        }


    .hero {
        min-height: auto;
        padding: 100px 0 50px;
        flex-direction: column;
        text-align: center;
        width: 100%;
        overflow: hidden;
    }

    .hero-container {
        flex-direction: column;
        gap: 20px;
        padding-top: 0;
        width: 100%;
    }

    .hero-content {
        flex: auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-visual {
        order: -1;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

        .hero-visual img {
            width: 100%;
            height: auto;
            max-width: 300px;
            margin: 0 auto;
        }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.4;
        font-weight: 300;
        color: #FFFFFF;
    }


    .download-section {
        padding: 60px 0;
        width: 100%;
        overflow: hidden;
    }

    .download-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        width: 100%;
    }

    .download-visual {
        width: 100%;
        margin: 0;
    }

        .download-visual img {
            margin: 0 auto !important;
            width: 100%;
            max-width: 350px;
            height: auto;
        }

    .download-content {
        flex: auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

        .download-content h2 {
            font-size: 30px;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .download-content p {
            font-size: 16px;
            line-height: 1.4;
            margin-bottom: 30px;
        }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }


    .features-section {
        padding: 60px 0;
        width: 100%;
    }

    .section-header {
        margin-bottom: 50px;
    }

        .section-header h2 {
            font-size: 30px;
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 16px;
            line-height: 1.4;
        }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        width: 100%;
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .icon-box {
        margin: 0 auto;
    }


    .blog-section {
        padding: 60px 0;
        width: 100%;
    }

    .blog-top-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
        gap: 10px;
    }

    .blog-brand h2 {
        font-size: 24px;
    }

    .blog-brand .mic-icon {
        width: 24px;
        height: 24px;
    }

    .blog-tabs {
        font-size: 14px;
        white-space: nowrap;
    }

    .blog-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
        width: 100%;
    }

    .blog-visual, .blog-text-content {
        flex: auto;
        width: 100%;
        max-width: 100%;
    }

        .blog-text-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            text-align: left;
        }

        .blog-text-content p {
            font-size: 14px;
            line-height: 1.6;
            text-align: left;
        }


    .footer {
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        padding-top: 50px;
        padding-bottom: 24px !important;
        width: 100%;
        overflow: visible;
        display: block;
    }

        .footer::after {
            height: 380px;
        }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 30px;
        width: 100%;
    }

    .footer-left {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .footer-logo {
        width: 150px;
        margin: 0 0 15px 0;
    }

    .slogan {
        text-align: left;
    }

    .footer-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        width: 100%;
    }

    .f-col {
        align-items: flex-start;
        width: 100%;
    }

        .f-col h4 {
            text-align: left;
            margin-bottom: 15px;
            font-size: 18px;
            width: 100%;
        }

        .f-col ul {
            align-items: flex-start;
            width: 100%;
        }

            .f-col ul li {
                justify-content: flex-start;
                text-align: left;
                font-size: 14px;
                width: 100%;
            }

    .contact-col ul li {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-divider {
        margin: 20px 0;
        width: 100%;
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 25px;
        width: 100%;
        position: relative;
        display: flex;
    }

    .fb-left {
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .copyright {
        font-size: 12px;
        opacity: 0.8;
        text-align: left;
    }

    .legal-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
    }

        .legal-links a {
            font-size: 12px;
        }

    .fb-right {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        padding-top: 10px;
    }

    .argede-logo {
        width: 60px;
        height: auto;
    }
}

@media (max-width: 1200.98px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 80px 0;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        text-align: center;
    }

    .hero-visual,
    .hero-content {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .hero-visual {
        order: 1;
        position: static;
        transform: none;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-img {
        display: block;
        width: 100%;
        max-width: 520px;
        height: auto;
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .hero-content {
        order: 2;
        position: static;
        transform: none;
        margin: 0 auto;
    }

        .hero-content h1 {
            font-size: 36px;
            line-height: 1.3;
        }
}

@media (max-width: 1200.98px) {
    .download-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 32px !important;
        text-align: center !important;
    }

    .download-visual,
    .download-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .download-visual {
        order: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }

        .download-visual img {
            display: block !important;
            width: 100% !important;
            max-width: 340px !important;
            height: auto !important;
            margin: 0 auto !important;
        }

    .download-content {
        order: 2 !important;
        margin: 0 auto !important;
    }

        .download-content h2 {
            font-size: 36px !important;
            line-height: 1.3 !important;
        }
}

@media (max-width: 992px) {
    .blog-layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 32px !important;
    }

    .blog-text-content,
    .blog-visual {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .blog-text-content {
        order: 1 !important;
    }

    .blog-visual {
        order: 2 !important;
        display: flex !important;
        justify-content: center !important;
    }

    .video-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin: 0;
    }

        .video-wrapper iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

    .kvkk-hero {
        position: relative;
        width: 100%;
        min-height: 350px;
        background-color: #050505;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 150px 0 120px;
    }

        .kvkk-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(70.53% 28.69% at 100% 100%, rgba(165, 154, 137, 0.35) 0%, rgba(0, 0, 0, 0) 100%), radial-gradient(98.27% 42.67% at 0% 0%, rgba(205, 4, 4, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }

        .kvkk-hero .container {
            position: relative;
            z-index: 2;
        }

        .kvkk-hero h1 {
            font-size: 45px;
            font-weight: 300;
            line-height: 1;
            color: #fff;
            margin: 0;
        }

    .kvkk-page {
        background: #fff;
        padding: 80px 0;
    }

    .kvkk-content {
        max-width: 1200px;
        margin: 0 auto;
    }

        .kvkk-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin-top: 28px;
            margin-bottom: 12px;
            color: #000;
        }

        .kvkk-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #111;
            margin-bottom: 14px;
        }

    @media (max-width: 768px) {
        .kvkk-hero {
            min-height: 260px;
            padding: 120px 0 70px;
        }

            .kvkk-hero h1 {
                font-size: 30px;
                line-height: 1.2;
            }

        .kvkk-page {
            padding: 50px 0;
        }

        .kvkk-content h3 {
            font-size: 18px;
        }

        .kvkk-content p {
            font-size: 15px;
            line-height: 1.7;
        }
    }
}

body .kvkk-hero {
    position: relative;
    width: 100%;
    min-height: 350px;
    background-color: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 0 120px;
}

    body .kvkk-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(70.53% 28.69% at 100% 100%, rgba(165, 154, 137, 0.35) 0%, rgba(0, 0, 0, 0) 100%), radial-gradient(98.27% 42.67% at 0% 0%, rgba(205, 4, 4, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 1;
    }

    body .kvkk-hero .container {
        position: relative;
        z-index: 2;
    }

    body .kvkk-hero h1 {
        font-size: 45px;
        font-weight: 300;
        line-height: 1;
        color: #fff;
        margin: 0;
    }

body .kvkk-page {
    background: #fff;
    padding: 80px 0;
}

body .kvkk-content {
    max-width: 1200px;
    margin: 0 auto;
}

    body .kvkk-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-top: 28px;
        margin-bottom: 12px;
        color: #000;
    }

    body .kvkk-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #111;
        margin-bottom: 14px;
    }

@media (max-width: 768px) {
    body .kvkk-hero {
        min-height: 260px;
        padding: 120px 0 70px;
    }

        body .kvkk-hero h1 {
            font-size: 30px;
            line-height: 1.2;
        }

    body .kvkk-page {
        padding: 50px 0;
    }

    body .kvkk-content h3 {
        font-size: 18px;
    }

    body .kvkk-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.kvkk-hero {
    position: relative;
    width: 100%;
    min-height: 350px;
    background-color: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 0 120px;
}

    .kvkk-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(70.53% 28.69% at 100% 100%, rgba(165, 154, 137, 0.35) 0%, rgba(0, 0, 0, 0) 100%), radial-gradient(98.27% 42.67% at 0% 0%, rgba(205, 4, 4, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 1;
    }

    .kvkk-hero .container {
        position: relative;
        z-index: 2;
    }

    .kvkk-hero h1 {
        font-size: 45px;
        font-weight: 300;
        line-height: 1.2;
        color: #fff;
        margin: 0;
    }

.kvkk-page {
    background: #fff;
    padding: 80px 0;
}

.kvkk-content {
    max-width: 1200px;
    margin: 0 auto;
}

    .kvkk-content h3 {
        font-size: 28px;
        font-weight: 600;
        margin-top: 40px;
        margin-bottom: 18px;
        color: #111;
    }

    .kvkk-content p {
        font-size: 18px;
        line-height: 1.8;
        color: #111;
        margin-bottom: 18px;
    }

    .kvkk-content ul {
        margin: 0 0 22px 22px;
        padding-left: 18px;
        list-style: disc;
    }

    .kvkk-content li {
        font-size: 18px;
        line-height: 1.8;
        color: #111;
        margin-bottom: 6px;
    }

    .kvkk-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 24px 0 30px;
    }

    .kvkk-content th,
    .kvkk-content td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
        vertical-align: top;
    }

    .kvkk-content th {
        background: #f3f3f3;
        font-weight: 600;
    }

@media (max-width: 768px) {
    .kvkk-hero {
        min-height: 260px;
        padding: 120px 0 70px;
    }

        .kvkk-hero h1 {
            font-size: 30px;
        }

    .kvkk-page {
        padding: 50px 0;
    }

    .kvkk-content h3 {
        font-size: 22px;
        margin-top: 28px;
    }

    .kvkk-content p,
    .kvkk-content li {
        font-size: 15px;
        line-height: 1.7;
    }

    .kvkk-content th,
    .kvkk-content td {
        padding: 10px;
        font-size: 14px;
    }
}

.policy-hero {
    position: relative;
    width: 100%;
    min-height: 350px;
    background-color: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 0 120px;
}

    .policy-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(70.53% 28.69% at 100% 100%, rgba(165, 154, 137, 0.35) 0%, rgba(0, 0, 0, 0) 100%), radial-gradient(98.27% 42.67% at 0% 0%, rgba(205, 4, 4, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 1;
    }

    .policy-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .policy-hero h1 {
        font-size: 42px;
        font-weight: 300;
        line-height: 1.2;
        color: #fff;
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }

.policy-page {
    background: #fff;
    padding: 80px 0;
}

.policy-content {
    max-width: 1100px;
    margin: 0 auto;
}

    .policy-content h3 {
        font-size: 30px;
        font-weight: 600;
        margin-top: 40px;
        margin-bottom: 16px;
        color: #111;
    }

    .policy-content h4 {
        font-size: 22px;
        font-weight: 600;
        margin-top: 28px;
        margin-bottom: 10px;
        color: #111;
    }

    .policy-content p {
        font-size: 17px;
        line-height: 1.9;
        color: #222;
        margin-bottom: 16px;
    }

    .policy-content ul {
        margin: 0 0 24px 22px;
        padding-left: 18px;
        list-style: disc;
    }

    .policy-content li {
        font-size: 17px;
        line-height: 1.8;
        color: #222;
        margin-bottom: 6px;
    }

@media (max-width: 768px) {
    .policy-hero {
        min-height: 260px;
        padding: 120px 0 70px;
    }

        .policy-hero h1 {
            font-size: 28px;
        }

    .policy-page {
        padding: 50px 0;
    }

    .policy-content h3 {
        font-size: 22px;
        margin-top: 28px;
    }

    .policy-content h4 {
        font-size: 18px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 15px;
        line-height: 1.7;
    }
}

.cookie-popup {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 99999;
    width: 100%;
    max-width: 420px;
    display: none;
}

    .cookie-popup.show {
        display: block;
    }

.cookie-popup-card {
    background: linear-gradient(135deg, #111111 0%, #2b2b2b 100%);
    color: #fff;
    border-radius: 28px;
    padding: 28px 28px 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-popup-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
}

    .cookie-popup-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.cookie-popup-card h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #ffffff;
}

.cookie-popup-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 16px;
}

.cookie-popup-link {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 22px;
}

    .cookie-popup-link:hover {
        color: #ff4d4f;
    }

.cookie-popup-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    flex: 1;
    height: 56px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cookie-btn-outline {
    background: transparent;
    border: 1.5px solid #ffffff;
    color: #ffffff;
}

    .cookie-btn-outline:hover {
        background: rgba(255, 255, 255, 0.08);
    }

.cookie-btn-filled {
    background: #d61f26;
    border: 1.5px solid #d61f26;
    color: #ffffff;
}

    .cookie-btn-filled:hover {
        background: #b7191f;
        border-color: #b7191f;
    }

@media (max-width: 768px) {
    .cookie-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        width: auto;
    }

    .cookie-popup-card {
        padding: 22px 20px 20px;
        border-radius: 24px;
    }

        .cookie-popup-card h3 {
            font-size: 28px;
        }

        .cookie-popup-card p {
            font-size: 15px;
        }

    .cookie-btn {
        height: 50px;
        font-size: 18px;
    }
}
