* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #7A4CCB 0%, #9370DB 100%);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner .btn-light {
    background-color: #fff;
    color: #7A4CCB;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-banner .btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #7A4CCB;
}

.navbar-brand:hover {
    color: #6A3CBB;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #7A4CCB;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
}

.info-badge {
    display: inline-block;
    background-color: #7A4CCB;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.rounded-lg {
    border-radius: 16px;
}

.content-section {
    padding: 60px 0;
}

.content-section.bg-light {
    background-color: #f8f9fa;
}

.content-block {
    padding: 30px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.content-block ul {
    margin-bottom: 20px;
}

.content-block ul li {
    margin-bottom: 10px;
    color: #555;
}

.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #7A4CCB;
    padding: 20px;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 20px;
    margin-top: 0;
}

.environment-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.environment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(122, 76, 203, 0.15);
}

.environment-card h3 {
    font-size: 22px;
    color: #7A4CCB;
    margin-top: 0;
}

.term-box {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.term-box:hover {
    background-color: #e9ecef;
}

.term-box h3 {
    font-size: 20px;
    color: #7A4CCB;
    margin-top: 0;
    margin-bottom: 10px;
}

.term-box p {
    margin-bottom: 0;
    font-size: 15px;
}

.questions-list {
    margin-top: 30px;
}

.question-item {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #7A4CCB;
}

.question-item p strong {
    color: #333;
    font-size: 17px;
}

.question-item .text-muted {
    font-size: 14px;
    margin-bottom: 0;
}

.limitations-section {
    padding: 60px 0;
}

.limitations-box {
    background-color: #fff;
    border: 2px solid #7A4CCB;
    border-radius: 12px;
    padding: 40px;
}

.limitations-box h2 {
    font-size: 32px;
    color: #7A4CCB;
    margin-bottom: 20px;
}

.limitations-box h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.limitations-box ul {
    list-style-type: disc;
    padding-left: 20px;
}

.limitations-box ul li {
    margin-bottom: 8px;
    color: #555;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7A4CCB 0%, #9370DB 100%);
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background-color: #7A4CCB;
    border-color: #7A4CCB;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6A3CBB;
    border-color: #6A3CBB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 76, 203, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #fff;
    color: #7A4CCB;
    transform: translateY(-2px);
}

.site-footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.site-footer h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.site-footer p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

.site-footer a {
    color: #7A4CCB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #9370DB;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.page-header .lead {
    font-size: 20px;
    color: #555;
}

.principle-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(122, 76, 203, 0.15);
}

.principle-card h3 {
    font-size: 22px;
    color: #7A4CCB;
    margin-bottom: 15px;
}

.principle-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
}

.explain-list {
    list-style-type: none;
    padding-left: 0;
}

.explain-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
}

.explain-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7A4CCB;
    font-weight: 700;
}

.internal-links {
    list-style-type: none;
    padding-left: 0;
}

.internal-links li {
    margin-bottom: 15px;
}

.internal-links a {
    color: #7A4CCB;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.internal-links a:hover {
    color: #6A3CBB;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #7A4CCB;
    box-shadow: 0 0 0 0.2rem rgba(122, 76, 203, 0.15);
}

.form-notice {
    font-size: 13px;
    color: #777;
    font-style: italic;
    margin-bottom: 20px;
}

.contact-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #7A4CCB;
    margin-bottom: 8px;
}

.contact-item p {
    margin-bottom: 0;
    color: #555;
}

.contact-item a {
    color: #7A4CCB;
    text-decoration: none;
}

.contact-item a:hover {
    color: #6A3CBB;
}

.thank-you-section {
    padding: 80px 0;
}

.contact-info-box {
    text-align: left;
}

.policy-content {
    padding: 20px 0;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

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

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

.policy-content ul {
    margin-bottom: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
    color: #555;
}

.cookie-type-box {
    border-left: 4px solid #7A4CCB;
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-section .lead {
        font-size: 18px;
    }
    
    .content-block h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .cookie-banner {
        padding: 15px 0;
    }
    
    .cookie-banner .btn-light {
        margin-top: 10px;
        width: 100%;
    }
}
