﻿.policy-container {
    padding: 0.5rem;
}

h1, h2, h3, h4 {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: black;
}

h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid #EFDBB2;
    padding-bottom: 0.25rem;
}

h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
    font-weight: 400;
}

ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

    ul li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        font-weight: 400;
    }

strong {
    font-weight: 600;
    color: #000;
}

section {
    margin-bottom: 2rem;
}

.subsection {
    padding: 1rem;
    background-color: #f9f9f9;
    border-left: 4px solid #EFDBB2;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

    .subsection ul {
        list-style-type: disc;
    }

ul li::marker {
    color: #EFDBB2;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    p,
    li {
        font-size: 0.9rem;
    }
}

.notice-box {
    background-color: #EFDBB2;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-btn {
    color: #EFDBB2;
    border: 2px solid #EFDBB2;
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

    .privacy-btn:hover {
        background-color: black;
        color: white;
        border-color: transparent;
    }
