/* CSS Reset */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code, em, img, small, strong, sub, sup,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
}

/* Main styles */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow-x: hidden;
}

.policy-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.close-btn {
    background-color: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: #555;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
    background-color: #ddd;
    color: #BF2025;
    transform: scale(1.05);
}

.policy-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.policy-container h1 {
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
}

.policy-container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    width: 100%;
    font-size: 1.5rem;
    font-weight: bold;
}

.policy-container h3 {
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 1.25rem;
    font-weight: bold;
}

.policy-container p {
    margin-bottom: 15px;
    color: #333;
    width: 100%;
}

.policy-container strong {
    font-weight: bold;
}

.policy-container ul {
    margin-bottom: 15px;
    padding-left: 30px;
    width: calc(100% - 30px);
    box-sizing: border-box;
    list-style-type: disc;
}

.policy-container li {
    margin-bottom: 5px;
}

.policy-container a {
    color: #BF2025;
    text-decoration: none;
}

.policy-container a:hover {
    text-decoration: underline;
}

@media (max-width: 850px) {
    .policy-container {
        width: 95%;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .policy-content {
        padding: 20px 15px;
    }

    .policy-container h1 {
        font-size: 1.8rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
    }

    .policy-container h3 {
        font-size: 1.1rem;
    }
} 