/* ====== AGB PAGE ====== */

.agb-main {
    margin-top: 75px;
    padding: 60px 20px;
    background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 50%, #f0f0f0 100%);
    min-height: calc(100vh - 300px);
}

.agb-container {
    max-width: 950px;
    margin: 0 auto;
    background: white;
    padding: 70px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.agb-container h1 {
    color: var(--primary-dark);
    font-family: Oswald, sans-serif;
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    padding-bottom: 35px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff3333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 6px solid var(--primary);
    letter-spacing: 2px;
    line-height: 1.1em;
}

.agb-section {
    margin-bottom: 50px;
    padding: 30px 0;
    background: transparent;
    border-radius: 0;
    border: none;
    position: relative;
    overflow: visible;
    border-bottom: 1px solid #e0e0e0;
}

.agb-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.agb-section h2 {
    color: var(--primary);
    font-family: Oswald, sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
    line-height: 1.3em;
    letter-spacing: 0.8px;
}

.agb-section p {
    color: var(--paragraph-gray);
    font-family: Barlow, sans-serif;
    font-size: 15px;
    line-height: 1.9em;
    margin-bottom: 18px;
}

.agb-section p:last-child {
    margin-bottom: 0;
}

.agb-section strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.agb-section a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    position: relative;
}

.agb-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agb-section a:hover {
    color: var(--primary-dark);
}

.agb-section a:hover::after {
    width: 100%;
}

.last-updated {
    margin-top: 70px;
    padding: 35px;
    background: transparent;
    text-align: left;
}

.last-updated p {
    color: var(--paragraph-gray);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .agb-container {
        padding: 50px;
    }

    .agb-container h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .agb-main {
        padding: 40px 15px;
        margin-top: 75px;
    }

    .agb-container {
        padding: 30px 20px;
    }

    .agb-container h1 {
        font-size: 34px;
        margin-bottom: 35px;
        padding-bottom: 20px;
    }

    .agb-section {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .agb-section h2 {
        font-size: 20px;
    }
}
