:root {
    --primary-color: #0e9eff;
    --primary-dark: #0077cc;
    --accent: #42d4a0;
    --text-dark: #1a1a1a;
    --text-gray: #5d5d5d;
    --bg-light: #f4f7fb;
    --white: #ffffff;
    --shadow: 0 12px 40px 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 60%, #42d4a0 100%);
    color: var(--white);
    padding: 110px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero::before {
    top: -40px;
    right: 15%;
}

.hero::after {
    bottom: -60px;
    left: 18%;
}

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

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 18px;
}

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

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

.policy-section {
    background: var(--white);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 40px 36px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 158, 255, 0.06);
}

.policy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(14, 158, 255, 0.08), rgba(66, 212, 160, 0.08));
    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: 12px;
    position: relative;
    padding-right: 26px;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(66, 212, 160, 0.15);
}

.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: 20px;
    color: var(--primary-dark);
    font-weight: 600;
}

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

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

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

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

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

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

    .policy-section {
        padding: 26px 22px;
    }

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

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

