/* GDPR page specific styles */

.gdpr-hero { 
    min-height: 500px; 
    color: var(--kc-green); 
    background: #fff url('images/hero-bg.png') no-repeat center center / fill; 
    border-radius: 44px 0 44px 44px; 
}

.gdpr-hero .container { 
    min-height: 500px; 
}

.gdpr-hero h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.gdpr-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--kc-green);
    max-width: 700px;
}

/* GDPR Content Section */
.gdpr-section { 
    background: var(--kc-green); 
    padding: 80px 20px; 
    border-radius: 0 0 44px 44px; 
    margin-bottom: 10px;
}

.gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gdpr-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gdpr-card:last-child {
    margin-bottom: 0;
}

.gdpr-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gdpr-card h2 {
    color: var(--kc-green);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.gdpr-card h3 {
    color: var(--kc-green);
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.gdpr-card > p {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: 'Roboto', sans-serif;
}

.gdpr-details {
    margin-top: 32px;
}

.gdpr-details p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
}

.gdpr-details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.gdpr-details ul li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.gdpr-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--kc-gold);
    font-weight: 700;
    font-size: 18px;
}

.gdpr-details ul li strong {
    color: var(--kc-green);
    font-weight: 600;
}

/* Browser links */
.browser-links {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

.browser-links p {
    margin-bottom: 12px;
    color: var(--kc-green);
}

.browser-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.browser-list li:before {
    content: "→";
    color: var(--kc-gold);
}

.browser-list a {
    color: var(--kc-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.browser-list a:hover {
    color: var(--kc-gold);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    text-align: center;
}

.contact-info {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    margin: 32px 0;
    border: 2px solid #f0f0f0;
}

.contact-info p {
    color: #555;
    font-size: 16px;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--kc-green);
    font-weight: 600;
}

.contact-info a {
    color: var(--kc-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--kc-green);
}

.contact-card .btn-yellow {
    display: inline-block;
    padding: 14px 48px;
    background: var(--kc-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px 10px 4px 20px;
    transition: all 0.3s ease;
    font-size: 16px;
    margin-top: 16px;
}

.contact-card .btn-yellow:hover {
    background: var(--kc-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* Responsive Design */
@media (max-width: 900px) {
    .gdpr-hero h1 {
        font-size: 36px;
    }

    .gdpr-hero {
        min-height: 400px;
    }

    .gdpr-hero .container {
        min-height: 400px;
    }

    .gdpr-section {
        padding: 40px 20px;
    }

    .gdpr-card {
        padding: 32px 24px;
    }

    .gdpr-card h2 {
        font-size: 28px;
    }

    .gdpr-card h3 {
        font-size: 20px;
    }

    .gdpr-card > p,
    .gdpr-details p,
    .gdpr-details ul li {
        font-size: 15px;
    }

    .browser-list {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .gdpr-hero h1 {
        font-size: 28px;
    }

    .gdpr-hero p {
        font-size: 16px;
    }

    .gdpr-card {
        padding: 24px 20px;
    }

    .gdpr-icon {
        width: 60px;
        height: 60px;
    }

    .gdpr-icon svg {
        width: 45px;
        height: 45px;
    }

    .gdpr-card h2 {
        font-size: 24px;
    }

    .gdpr-card h3 {
        font-size: 18px;
    }

    .contact-card .btn-yellow {
        padding: 12px 32px;
        font-size: 14px;
    }
}
