﻿:root {
    --paper-color: #fcfaf6;
    --ink-color: #3a3129;
    --accent-primary: #c44536;
    --accent-secondary: #2a5298;
    --line-color: rgba(202, 179, 159, 0.2);
    --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.08);
    --spiral-width: 24px;
}

body {
    background: #f5f0e7;
    font-family: 'Open Sans', sans-serif;
    color: var(--ink-color);
    line-height: 1.7;
}

.journal-container {
    max-width: 1200px;
    margin: 2rem auto;
    background: var(--paper-color);
    box-shadow: var(--shadow-light);
    position: relative;
    min-height: 90vh;
    border-left: var(--spiral-width) solid #e3d5c4;
}

    .journal-container::before {
        content: '';
        position: absolute;
        left: calc(-1 * var(--spiral-width));
        top: 0;
        bottom: 0;
        width: var(--spiral-width);
        background: repeating-linear-gradient(180deg, #e3d5c4 0px, #e3d5c4 24px, #d8c9b6 24px, #d8c9b6 25px);
    }

.journal-content {
    padding: 3rem;
    background-image: linear-gradient(var(--line-color) 1px, transparent 1px);
    background-size: 100% 32px;
}

.policy-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e3d5c4;
    padding-bottom: 1rem;
}

    .policy-header h1 {
        font-family: 'Caveat', cursive;
        font-size: 2.5rem;
        color: var(--accent-primary);
        margin-bottom: 0.5rem;
    }

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line-color);
}

    .policy-section h2 {
        color: var(--accent-primary);
        margin-bottom: 1rem;
        font-size: 1.3rem;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .policy-section h2 i {
            margin-right: 0.75rem;
            color: var(--accent-secondary);
        }

    .policy-section p {
        margin-bottom: 1rem;
    }

.policy-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

    .policy-list li {
        margin-bottom: 0.5rem;
    }

.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--accent-secondary);
    color: white;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-back:hover {
        background: #1f3f7a;
        transform: translateY(-1px);
    }

    .btn-back i {
        margin-right: 0.5rem;
    }

@@media (max-width: 768px) {
    .journal-container {
        margin: 0;
        border-left-width: 12px;
    }

        .journal-container::before {
            left: -12px;
            width: 12px;
        }

    .journal-content {
        padding: 1.5rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }
}
