* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h4 {
    font-family: "Poppins", sans-serif;
    color: #000000;
}
h3 {
    padding-left: 60px;
    margin-top: 20px;
    margin-bottom: 10px;
}
h2 {
    padding-left: 60px;
}

a {
    text-decoration: none;
    color: #000000;
    transition: 0.3s;
}
a:hover {
    color: #000; /* Dark hover instead of white */
}

/* --- 2. HERO SECTION (LIGHT BACKGROUND) --- */
.policy-hero {
    position: relative;
    padding: 120px 20px 80px;
    text-align: center;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(22, 22, 22, 0.15) 0%,
        rgba(0, 0, 0, 0) 70% /* Fade to transparent/white */
    );
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #4d4d4d 0, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    color: #555555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-content p {
    line-height: 2rem;
    max-width: 1100px;
    padding-left: 60px;
}

ol {
    padding-left: 90px;
    margin-top: 10px;
    margin-bottom: 10px;
}
