/* =============================================
   AGB / Terms & Conditions Page Specific Styles
   ============================================= */

.agb-section {
    padding: 6rem 0 4rem;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.agb-section .container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--card-bg);
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--box-shadow-medium);
}

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

.status-box {
    background-color: #fffbe6; /* Light yellow */
    border: 1px solid #ffe58f; /* Yellow border */
    border-left: 4px solid var(--secondary-color); /* Gold accent */
    padding: 1rem 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 4px;
}

.status-box h2 {
    color: #8a6d3b; /* Dark yellow text */
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    border-bottom: none;
    padding-bottom: 0;
}

.status-box p {
    margin-bottom: 0;
    color: #66512c;
    font-size: 0.95rem;
}

.agb-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.agb-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
    color: #495057;
}

.agb-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.agb-content a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .agb-section .container {
        padding: 1.5rem;
    }
    .agb-section h1 {
        font-size: 2rem;
    }
}