
        :root {
            --primary: #FF3E9D;
            --secondary: #00E0FF;
            --accent: #FFD300;
            --dark: #1A1A2E;
            --light: #F0F5F9;
            --success: #00FF9D;
            --font-main: 'Courier New', monospace;
            --font-heading: 'Arial Black', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        section {
            padding: 80px 5%;
            position: relative;
        }

        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.7)), url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?q=80&w=928&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            color: white;
        }

        .policy-page{
            max-width: 1000px;
            margin: 0px auto;
        }

        .hero-content {
            max-width: 600px;
            animation: fadeIn 1.5s ease-out;
        }

        h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            line-height: 1.2;
        }

        h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 3px;
            background-color: var(--accent);
        }

        h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--dark);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s;
            border: 2px solid var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 62, 157, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary);
            margin-left: 15px;
        }

        .btn-secondary:hover {
            background-color: var(--primary);
            color: var(--dark);
        }

        .about {
            background-color: rgba(26, 26, 46, 0.7);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 224, 255, 0.1) 0%, rgba(26, 26, 46, 0) 70%);
            z-index: -1;
            animation: pulse 15s infinite alternate;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-10deg);
            transition: transform 0.5s;
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .features {
            background-color: var(--light);
            color: var(--dark);
        }

        .features h2 {
            color: var(--primary);
        }

        .features h2::after {
            background-color: var(--dark);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 5px solid var(--primary);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .feature-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }

        .quote {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            text-align: center;
            padding: 100px 5%;
        }

        .quote-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .quote-text {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.4;
            position: relative;
        }

        .quote-text::before, .quote-text::after {
            content: '"';
            font-size: 4rem;
            color: rgba(26, 26, 46, 0.2);
            position: absolute;
        }

        .quote-text::before {
            top: -30px;
            left: -40px;
        }

        .quote-text::after {
            bottom: -60px;
            right: -40px;
        }

        .quote-author {
            font-size: 1.5rem;
            font-weight: bold;
            font-style: italic;
        }

        .pricing {
            background-color: var(--dark);
            text-align: center;
        }

        .pricing-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }

        .pricing-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 40px 30px;
            width: 300px;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 62, 157, 0.3);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 62, 157, 0.2);
        }

        .pricing-card.popular {
            border: 1px solid var(--success);
            transform: scale(1.05);
        }

        .pricing-card.popular::after {
            content: 'POPÜLER';
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--success);
            color: var(--dark);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .pricing-card h3 {
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .price span {
            font-size: 1rem;
            color: var(--light);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .pricing-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }

        .faq {
            background-color: rgba(26, 26, 46, 0.7);
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            padding: 20px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.2rem;
            position: relative;
            color: var(--secondary);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-question.active::after {
            content: '-';
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 20px;
        }

        .faq-answer.show {
            max-height: 500px;
            padding-bottom: 20px;
        }

        .contact {
            background-color: var(--light);
            color: var(--dark);
        }

        .contact h2 {
            color: var(--primary);
        }

        .contact h2::after {
            background-color: var(--dark);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: var(--font-main);
            font-size: 1rem;
        }

        .form-group textarea {
            height: 150px;
            resize: none;
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .popup.show {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: var(--dark);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            position: relative;
            border: 2px solid var(--primary);
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--primary);
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-btn {
            padding: 10px 20px;
            background-color: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .cookie-btn:hover {
            background-color: var(--accent);
        }

        footer {
            background-color: #0F0F1A;
            padding: 50px 5% 20px;
            color: var(--light);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 40px;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 5px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 0.5;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 40px;
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 20px;
                transform: translateY(-150%);
                transition: transform 0.3s ease-in-out;
                z-index: 999;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active .line2 {
                opacity: 0;
            }
            
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero-content {
                text-align: center;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
            
            .btn-secondary {
                margin-left: 0;
            }
            
            .quote-text {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .pricing-card {
                width: 100%;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
