html,
body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.content-container {
    display: flex;
    line-height: 2;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px;
    margin: 5rem auto 3rem auto;
    max-width: 50%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-container h2 {
    font-size: 2.2rem;
    color: var(--accent2);
    margin-bottom: 1rem;
    text-align: center;
}

.content-container h3 {
    text-align: center;
}

.content-container p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.content-container a {
    color: var(--accent2);
    text-decoration: underline;
}

#backHomeBtn {
    display: inline-block;
    background-color: var(--accent2);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1.5rem;
    margin-top: 5%;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#backHomeBtn:hover {
    background-color: #129aa0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}


@media (max-width: 800px) {
    .content-container {
        max-width: 75%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .content-container ul {
        padding-left: 0;
    }

    .content-container ul li {
        text-indent: 0;
    }
}