/* Header Section */
#policy-header {
    background: linear-gradient(rgba(0, 0, 0, 0.274), rgba(0, 0, 0, 0.308)),
        url('../img/policy_header.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
}

#policy-header .policy-title {
    font-size: 4.8rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#policy-header .policy-subtitle {
    font-size: 1.8rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Main Content Container */
#policy-main {
    margin: 0 auto;
    padding: 6rem 2rem;
}

/* Content Block Styling */
.policy-content-block {
    margin-bottom: 2rem;
}

/* Section Headings */
.policy-content-block h2 {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #ffffff;
    border-bottom: 2px solid #444;
    padding-bottom: 1rem;
}

/* Paragraphs */
.policy-content-block p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.policy-content-block p:last-child {
    margin-bottom: 0;
}



/* Links */
.policy-content-block a {
    color: #4a9eff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 9px;
        /* Slightly smaller on mobile */
    }

    #policy-header {
        padding: 6rem 1.5rem;
    }

    #policy-header .policy-title {
        font-size: 3.6rem;
    }

    #policy-header .policy-subtitle {
        font-size: 1.6rem;
    }

    #policy-main {
        padding: 4rem 1.5rem;
    }

    .policy-content-block h2 {
        font-size: 2.8rem;
    }

    .policy-content-block {
        padding: 2rem;
    }

    .policy-content-block p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
        /* Even smaller on very small screens */
    }

    #policy-header {
        padding: 4rem 1rem;
    }

    #policy-main {
        padding: 3rem 1rem;
    }

    .policy-content-block {
        padding: 1.5rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    #policy-main {
        padding: 5rem 3rem;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    #policy-main {
        max-width: 140rem;
    }
}