

.auxiliary-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.page-section {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
}

.page-section h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.policy-content {
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.policy-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

.policy-section ul {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1rem;
}

.policy-section li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.policy-section a {
    color: var(--color-accent);
    text-decoration: none;
}

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

.content-block {
    margin-bottom: 2rem;
    padding: 24px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: left;
}

.content-block h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: left;
}

.content-block.centered {
    text-align: center;
}

.content-block.centered h2 {
    text-align: center;
}

.content-block.centered p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.content-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.content-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .page-section h1 {
        font-size: 1.8rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .content-with-image {
        grid-template-columns: 1fr;
    }

    .page-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .page-section h1 {
        font-size: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1rem;
    }

    .policy-section li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
}
