
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    min-height: calc(100vh - 200px);
    background-color: #fff;
}


.cookie-policy-section {
    padding: 60px 0 80px;
    background-color: #fff;
}


.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.policy-title {
    font-size: 42px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.policy-subtitle {
    font-size: 16px;
    color: #6b7280;
    font-style: italic;
}


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

.policy-block {
    margin-bottom: 40px;
    padding: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.4;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
    text-align: justify;
}

.section-text p{
    padding-bottom: 15px;
}

.policy-list {
    margin: 20px 0;
    padding-left: 20px;
}

.policy-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
    position: relative;
}

.policy-list li::marker {
    color: #2c545c;
}


.highlight-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

.highlight-box::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #fff;
    padding: 0 8px;
    font-size: 20px;
}

.highlight-text {
    font-size: 15px;
    line-height: 1.6;
    color: #2c545c;
    margin: 0;
}

.highlight-text strong {
    color: #2c545c;
}


.contact-info {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 8px;
}

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

.contact-info strong {
    color: #111827;
    font-weight: 600;
}


.cookie-policy-section {
    animation: fadeInUp 0.8s ease-out;
}

.policy-block {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out forwards;
}

.policy-block:nth-child(1) { animation-delay: 0.1s; }
.policy-block:nth-child(2) { animation-delay: 0.2s; }
.policy-block:nth-child(3) { animation-delay: 0.3s; }
.policy-block:nth-child(4) { animation-delay: 0.4s; }
.policy-block:nth-child(5) { animation-delay: 0.5s; }
.policy-block:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.section-title:hover {
    color: #2c545c;
    transition: color 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}


@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
    
    .policy-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .cookie-policy-section {
        padding: 40px 0 60px;
    }
    
    .policy-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .policy-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .policy-subtitle {
        font-size: 15px;
    }
    
    .policy-content {
        max-width: 100%;
    }
    
    .policy-block {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .section-text {
        font-size: 15px;
        margin-bottom: 14px;
    }
    
    .policy-list li {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .highlight-box {
        padding: 16px;
        margin: 16px 0;
    }
    
    .highlight-text {
        font-size: 14px;
    }
    
    .contact-info {
        padding: 16px;
        margin-top: 16px;
    }
    
    .contact-info p {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .cookie-policy-section {
        padding: 30px 0 50px;
    }
    
    .policy-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .policy-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .policy-subtitle {
        font-size: 14px;
    }
    
    .policy-block {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .section-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .policy-list {
        padding-left: 16px;
    }
    
    .policy-list li {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .highlight-box {
        padding: 14px;
        margin: 14px 0;
        border-radius: 8px;
    }
    
    .highlight-box::before {
        top: -8px;
        left: 16px;
        font-size: 18px;
    }
    
    .highlight-text {
        font-size: 13px;
    }
    
    .contact-info {
        padding: 14px;
        margin-top: 14px;
    }
    
    .contact-info p {
        font-size: 13px;
        margin-bottom: 5px;
    }
}



html {
    scroll-behavior: smooth;
}


@media print {
    .cookie-policy-section {
        padding: 20px 0;
    }
    
    .policy-block {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .highlight-box {
        border: 1px solid #333;
        background: #f5f5f5;
    }
    
    .highlight-box::before {
        display: none;
    }
}


a {
    color: #2c545c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}


.loading {
    opacity: 0.6;
    pointer-events: none;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
