/* Cookie Policy Page Styles */

.cookie-policy-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.cookie-policy-title {
    color: #011247;
    margin-bottom: 30px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.intro-list {
    list-style-type: disc;
    margin-left: 20px;
}

.intro-section h3 {
    color: #011247;
    margin-bottom: 15px;
}

.intro-section p {
    font-size: 16px;
    line-height: 1.6;
}

.intro-section p:last-child {
    font-size: 14px;
    color: #666;
}

/* Section Headers */
.policy-content h3 {
    color: #011247;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Policy Sections */
.policy-section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.policy-section.required {
    border-left: 4px solid #28a745;
}

.policy-section.optional {
    border-left: 4px solid #007bff;
}

.policy-section.warning {
    background: #fffbea;
    border-left: 4px solid #ffc107;
}

.policy-section h4 {
    color: #011247;
    margin-bottom: 15px;
}

/* Cookie List */
.cookie-list {
    list-style: none;
    padding-left: 0;
}

.cookie-item {
    padding: 10px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 5px;
}

.cookie-item code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

.cookie-item small {
    color: #666;
    display: block;
    margin-top: 5px;
}

/* Warning List */
.no-use-list {
    color: #666;
}

.no-use-list li {
    margin-bottom: 5px;
}

/* Management Section */
.management-section {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.management-section ul {
    margin-top: 10px;
}

/* Security Section */
.security-section {
    background: #d4edda;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.security-section p {
    margin-bottom: 10px;
}

.security-section ul {
    margin-top: 10px;
}

/* Browser Guide */
.browser-guide {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.browser-guide p {
    font-weight: bold;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-section p strong {
    color: #011247;
}

.faq-section p:not(:first-child) {
    margin-top: 15px;
}

/* Note Section */
.note-section {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ffc107;
}

.note-section p {
    margin: 0;
    color: #856404;
}

.note-section a {
    color: #007bff;
    text-decoration: underline;
}

/* Back Button Container */
.back-button-container {
    text-align: center;
    margin-top: 40px;
}

/* Back Button */
.policy-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    background: #ffffff !important;
    color: #011247 !important;
    text-decoration: none !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.2;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 24px rgba(1, 18, 71, 0.18);
    border: 2px solid rgba(1, 18, 71, 0.15);
}

.policy-back-btn:visited,
.policy-back-btn:focus,
.policy-back-btn:active {
    color: #011247 !important;
    text-decoration: none !important;
}

.policy-back-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #020c34 !important;
    text-decoration: none !important;
    box-shadow: 0 14px 28px rgba(1, 18, 71, 0.24);
    border-color: rgba(1, 18, 71, 0.3);
}

.policy-back-btn i {
    margin-right: 6px;
    font-size: 1.1em;
}

@media (max-width: 767.98px) {
    .policy-back-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        font-size: 1.02rem;
        padding: 14px 28px;
    }
}

/* Badge Styles */
.badge-required {
    color: #28a745;
    font-weight: bold;
}

.badge-optional {
    color: #007bff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-content {
        padding: 0 15px;
    }
    
    .policy-section {
        padding: 15px;
    }
    
    .cookie-item {
        padding: 8px;
    }
}

