/* AGB Hero Section */
.agb-hero {
    padding: 120px 0 60px;
    background-color: var(--background-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 64px;
}

.agb-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.agb-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.agb-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.agb-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* AGB Content Section */
.agb-content {
    padding: 60px 0;
    background-color: var(--background-color);
    position: relative;
}

.agb-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 0;
}

.agb-sections {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.agb-section {
    margin-bottom: 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.agb-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
}

.agb-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.agb-section h2 i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.agb-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    margin-bottom: 10px;
}

.agb-section p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .agb-hero {
        padding: 100px 0 40px;
        margin-top: 56px;
    }
    
    .agb-hero h1 {
        font-size: 2rem;
    }
    
    .agb-content {
        padding: 40px 0;
    }
    
    .agb-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .agb-section h2 {
        font-size: 1.2rem;
    }
    
    .agb-section:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .agb-hero {
        padding: 80px 0 30px;
        margin-top: 50px;
    }
    
    .agb-hero h1 {
        font-size: 1.8rem;
    }
    
    .agb-hero p {
        font-size: 1rem;
    }
    
    .agb-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .agb-section h2 {
        font-size: 1.1rem;
    }
} 