:root {
    --primary-color: #0e9eff;
    --primary-dark: #0077cc;
    --text-dark: #1a1a1a;
    --text-gray: #5a5a5a;
    --bg-light: #f5f8fc;
    --white: #ffffff;
    --shadow: 0 10px 35px rgba(14, 158, 255, 0.12);
}

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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #0e9eff 0%, #0077cc 100%);
    color: var(--white);
    padding: 110px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    top: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    filter: blur(0.5px);
}

.hero::before {
    left: 12%;
}

.hero::after {
    right: 18%;
    top: 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 680px;
    margin: 0 auto;
}

main.privacy {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.policy-section {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 40px 35px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.policy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(14, 158, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-section:hover::before {
    opacity: 1;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--primary-dark);
}

.policy-section p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.policy-section ul {
    list-style: none;
    padding-right: 20px;
}

.policy-section ul li {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
}

.policy-section ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.policy-section ul li strong {
    color: var(--primary-dark);
}

.policy-section a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-note {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: rgba(14, 158, 255, 0.12);
    border-radius: 18px;
    color: var(--primary-dark);
    font-weight: 600;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 18px;
    }

    .policy-section {
        padding: 32px 28px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 90px 0 70px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 17px;
    }

    .policy-section {
        padding: 28px 24px;
    }

    .policy-section h2 {
        font-size: 24px;
    }

    .policy-section ul li {
        font-size: 16px;
    }
}

