/* General Settings */
main {
    color: #333;
    margin-top: 0;
    --accent-color: #FF9B47;
    font-family: 'Roboto', sans-serif;

}

/* Main Hero Container */
.policy-hero {
    font-family: 'Orbitron', sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    background: url("../../img/about/Texture-kris-joubi.1e9849b494ec.jpg") no-repeat center center/cover var(--accent-color);
    text-align: center;
}

.hero-content {
    max-width: 80%;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin: 0 auto;
}

/* Policy Page Container */
.policy-container {
    margin: 2rem auto;
    padding: 0 2rem;
    max-width: 1200px;
}

/* Summary (Table of Contents) */
.summary {
    width: 80%;
    margin: 3rem auto;
    padding: 1rem 2rem;
    background-color: #f5f5f5;
    border-radius: 20px;
    text-align: center;
}

.summary h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.summary a {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    margin: 0.5rem 0;
    padding: 0 1em;
    transition: all 0.3s ease;
}

.summary a:hover {
    color: #3337;
    background-color: var(--accent-color);
}

/* Article Section */
.article-section {
    margin-bottom: 2rem;
}

.article-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    color: var(--text-color-light);
    border-bottom: 2px solid var(--primary-color);
}

.article-section p, .article-section p, .article-section ul {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

.article-section a {
    color: var(--accent-color);
}

a:hover {
    color: #A06B3E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .summary h2 {
        font-size: 2rem;
    }
    .summary a {
        font-size: 1.2rem;
    }
    .article-section h2 {
        font-size: 1.5rem;
    }
    .article-section p {
        font-size: 1rem;
    }
}
