section {
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #333;
}

.content-container h2,
.content-container h3,
.content-container h4 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #333;
}

h2 {
    text-align: center;
    margin-top: 0;
    font-size: 2em;
}

h3 {
    color: #2E4535;
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
    margin-top: 30px;
    font-size: 1.4em;
}

h4 {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

p, li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-container a {
    color: #2E4535;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    font-family: inherit;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2E4535;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #233529;
    transform: scale(1.05);
}

.cookie-btn.reject {
    background-color: #5e5959;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #4e4949;
    transform: scale(1.05);
}

.back-link {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #2E4535;
    border-radius: 5px;
    text-decoration: none !important;
    font-family: inherit;
    color: #2E4535;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #2E4535;
    color: white !important;
}

@media (max-width: 700px) {
    .content-container {
        padding: 20px;
        width: 90%;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
    }

    h2 {
        font-size: 1.6em;
    }
}