/* Anonymat Page Specific Styles */
.anonymat-hero {
    background: linear-gradient(rgba(0, 102, 255, 0.8), rgba(0, 102, 255, 0.9)), url('../images/anonymat-bg.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 40px 0 40px;
    margin-top: var(--header-height);
}

.anonymat-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.anonymat-hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.intro-section, .minors-section, .security-section, 
.anonymity-section, .trust-section, .freedom-section {
    padding: 80px 0;
}

.intro-section {
    background-color: white;
}

.minors-section {
    background-color: #f9f9f9;
}

.security-section {
    background-color: white;
}

.anonymity-section {
    background-color: #f9f9f9;
}

.trust-section {
    background-color: white;
}

.freedom-section {
    background-color: #f9f9f9;
}

.cta-section {
    background-color: var(--primary);
    color: white;
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header i {
    margin-right: 15px;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-box {
    max-width: 800px;
    margin: 0 auto;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon.warning {
    background-color: #ff9800;
}

.feature-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-top: 5px;
}

.highlight-box {
    background-color: #e3f2fd;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
    align-items: center;
}

.highlight-box i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .anonymat-hero {
        padding: 100px 0 60px;
    }
    
    .anonymat-hero h1 {
        font-size: 2.2rem;
    }
    
    .intro-section, .minors-section, .security-section, 
    .anonymity-section, .trust-section, .freedom-section {
        padding: 60px 0;
    }
    
    .feature-list li {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header i {
        margin-right: 10px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-box i {
        margin-right: 0;
        margin-bottom: 15px;
    }
}