/* 
 * policy.css - Styles for the Policy pages (Datenschutz & Impressum)
 * GestionaTech
 */

/* ===== Page Hero Section ===== */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    color: #fff;
    background-color: #1a1a1a;
    overflow: hidden;
}

#policy-hero {
    background: url('../images/policy-hero.jpg') no-repeat center center;
    background-size: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 36, 94, 0.9) 0%, rgba(64, 83, 177, 0.8) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== Policy Section ===== */
.policy-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.policy-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    color: #19245E;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-content h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-content ul, 
.policy-content ol {
    color: #555;
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-content a {
    color: #4053B1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #19245E;
    text-decoration: underline;
}

.contact-info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #4053B1;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.contact-info-box p {
    margin-bottom: 10px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.highlights-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    background-color: #f9f9f9;
}

.highlights-box h3 {
    margin-top: 0;
    color: #19245E;
}

/* Footer adjustments */

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .policy-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    .policy-content {
        padding: 30px;
    }
    
    .policy-content h2 {
        font-size: 1.6rem;
    }
    
    .policy-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
    
    .policy-content {
        padding: 25px 20px;
        border-radius: 10px;
    }
    
    .policy-content h2 {
        font-size: 1.4rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-info-box {
        padding: 15px;
    }
}