.policy-page {
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-header {
    margin-bottom: 3rem;
}

.policy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #718096;
}

.policy-breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-breadcrumb a:hover {
    color: #5a67d8;
}

.policy-breadcrumb i {
    font-size: 0.7rem;
    color: #a0aec0;
}

.policy-hero {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.policy-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.policy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.policy-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.policy-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.policy-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-meta span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

.table-of-contents {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.table-of-contents h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 600;
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 10px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.toc-item:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.toc-number {
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toc-item:hover .toc-number {
    background: white;
    color: #667eea;
}

.toc-title {
    font-weight: 500;
    font-size: 0.95rem;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.policy-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    scroll-margin-top: 100px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f7fafc;
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.section-content {
    line-height: 1.7;
    color: #4a5568;
}

.section-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.section-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.highlight-box,
.warning-box,
.important-notice,
.no-sale-guarantee,
.force-majeure,
.maximum-liability,
.breach-notification,
.survival-clause {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.highlight-box {
    background: #ebf8ff;
    border-left-color: #3182ce;
}

.highlight-box i {
    color: #3182ce;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.warning-box {
    background: #fffbeb;
    border-left-color: #f59e0b;
}

.warning-box i {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.important-notice {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.important-notice i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.no-sale-guarantee,
.force-majeure,
.maximum-liability,
.breach-notification,
.survival-clause {
    background: #f0fff4;
    border-left-color: #10b981;
}

.no-sale-guarantee i,
.force-majeure i,
.maximum-liability i,
.breach-notification i,
.survival-clause i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.highlight-box h4,
.warning-box h4,
.important-notice h4,
.no-sale-guarantee h4,
.force-majeure h4,
.maximum-liability h4,
.breach-notification h4,
.survival-clause h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.highlight-box p,
.warning-box p,
.important-notice p,
.no-sale-guarantee p,
.force-majeure p,
.maximum-liability p,
.breach-notification p,
.survival-clause p {
    margin: 0;
    color: #4a5568;
}

.info-categories,
.usage-purposes,
.sharing-scenarios,
.cookie-types,
.security-measures,
.user-rights,
.obligations-list,
.ip-categories,
.prohibited-activities,
.liability-limitations,
.account-management,
.termination-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-category,
.purpose-item,
.scenario-card,
.cookie-type,
.security-category,
.right-item,
.obligation-category,
.ip-category,
.prohibition-category,
.limitation-card,
.management-category,
.termination-type {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-category:hover,
.purpose-item:hover,
.scenario-card:hover,
.cookie-type:hover,
.security-category:hover,
.right-item:hover,
.obligation-category:hover,
.ip-category:hover,
.prohibition-category:hover,
.limitation-card:hover,
.management-category:hover,
.termination-type:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.category-icon,
.purpose-icon,
.scenario-header i,
.cookie-icon,
.security-icon,
.right-icon,
.obligation-header i,
.ip-icon,
.prohibition-header i,
.limitation-icon,
.management-header i,
.termination-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-content h4,
.purpose-content h4,
.scenario-content h4,
.cookie-content h4,
.security-content h4,
.right-content h4,
.obligation-content h4,
.ip-content h4,
.prohibition-category h4,
.limitation-content h4,
.management-content h4,
.termination-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.category-content ul,
.purpose-content ul,
.security-content ul,
.obligation-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-content li,
.purpose-content li,
.security-content li,
.obligation-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.category-content li::before,
.purpose-content li::before,
.security-content li::before,
.obligation-content li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-basis {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.legal-basis h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.legal-basis ul {
    list-style: none;
    padding: 0;
}

.legal-basis li {
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.legal-basis strong {
    color: #2d3748;
    font-weight: 600;
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.scenario-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.scenario-header h4 {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.scenario-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.scenario-examples span {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-icon.essential {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.cookie-icon.analytics {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
}

.cookie-icon.marketing {
    background: linear-gradient(135deg, #f59e0b 0%, #d69e2e 100%);
}

.cookie-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cookie-examples span {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.cookie-management {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.cookie-management h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.cookie-settings-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cookie-settings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.data-retention {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.data-retention h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.retention-periods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.retention-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.data-type {
    font-weight: 500;
    color: #2d3748;
}

.retention-period {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.rights-exercise {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.rights-exercise h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
}

.contact-method i {
    color: #667eea;
    width: 20px;
}

.response-time {
    background: #ebf8ff;
    color: #3182ce;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.contact-header h4 {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.contact-details strong {
    color: #2d3748;
    font-weight: 600;
}

.policy-updates {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.policy-updates h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.update-notification {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid #e2e8f0;
}

.update-notification i {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.update-notification h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.update-notification p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.notification-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d69e2e 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.quick-actions {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.quick-actions h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 600;
    text-align: center;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.action-card:hover {
    background: #667eea;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    background: white;
    color: #667eea;
}

.action-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.action-card p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.action-card:hover p {
    opacity: 1;
}

.terms-acceptance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.acceptance-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.acceptance-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.acceptance-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.acceptance-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.acceptance-content p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-category {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-category:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.category-header h4 {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.feature-category li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.service-disclaimer {
    background: #fffbeb;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #fbbf24;
}

.service-disclaimer h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #92400e;
    font-weight: 600;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #fbbf24;
}

.disclaimer-item i {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.disclaimer-item h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #92400e;
    font-weight: 600;
}

.disclaimer-item p {
    margin: 0;
    color: #78350f;
    font-size: 0.8rem;
    line-height: 1.5;
}

.age-restriction {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #ef4444;
}

.age-restriction i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.age-restriction h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #991b1b;
    font-weight: 600;
}

.age-restriction p {
    margin: 0;
    color: #7f1d1d;
}

.protection-level {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

.usage-permissions {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.usage-permissions h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.permission-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.permission-item.allowed {
    background: #f0fff4;
    color: #065f46;
    border: 1px solid #10b981;
}

.permission-item.forbidden {
    background: #fef2f2;
    color: #7f1d1d;
    border: 1px solid #ef4444;
}

.permission-item.allowed i {
    color: #10b981;
}

.permission-item.forbidden i {
    color: #ef4444;
}

.dmca-notice {
    background: #ebf8ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #3182ce;
}

.dmca-notice h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1e40af;
    font-weight: 600;
}

.dmca-notice p {
    margin: 0;
    color: #1e3a8a;
}

.prohibition-category.severe {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

.prohibition-category.moderate {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

.prohibition-category.minor {
    border-left: 4px solid #3182ce;
    background: #ebf8ff;
}

.prohibition-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.prohibition-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.prohibition-category.severe .prohibition-header h4 {
    color: #991b1b;
}

.prohibition-category.moderate .prohibition-header h4 {
    color: #92400e;
}

.prohibition-category.minor .prohibition-header h4 {
    color: #1e40af;
}

.penalty {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.prohibition-category.severe .penalty {
    color: #991b1b;
    border: 1px solid #ef4444;
}

.prohibition-category.moderate .penalty {
    color: #92400e;
    border: 1px solid #f59e0b;
}

.prohibition-category.minor .penalty {
    color: #1e40af;
    border: 1px solid #3182ce;
}

.prohibition-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prohibition-category li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.prohibition-category.severe li {
    color: #7f1d1d;
}

.prohibition-category.moderate li {
    color: #78350f;
}

.prohibition-category.minor li {
    color: #1e3a8a;
}

.prohibition-category li::before {
    content: '×';
    font-weight: bold;
    font-size: 1.2rem;
}

.prohibition-category.severe li::before {
    color: #ef4444;
}

.prohibition-category.moderate li::before {
    color: #f59e0b;
}

.prohibition-category.minor li::before {
    color: #3182ce;
}

.reporting-system {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.reporting-system h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.reporting-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.reporting-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.reporting-method i {
    color: #667eea;
    font-size: 1.2rem;
}

.reporting-method h5 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #2d3748;
    font-weight: 600;
}

.reporting-method p {
    margin: 0;
    color: #4a5568;
    font-size: 0.8rem;
}

.limitation-level {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

.management-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.management-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.management-header h4 {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.account-suspension {
    background: #fffbeb;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #f59e0b;
}

.account-suspension h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #92400e;
    font-weight: 600;
}

.suspension-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.suspension-reason {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #f59e0b;
    color: #78350f;
    font-size: 0.9rem;
}

.suspension-reason i {
    color: #f59e0b;
}

.termination-icon.user {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
}

.termination-icon.company {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.termination-process {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.termination-process span {
    background: #ebf8ff;
    color: #1e40af;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    border-left: 3px solid #3182ce;
}

.termination-reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.termination-reasons span {
    background: #fef2f2;
    color: #7f1d1d;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #ef4444;
}

.post-termination {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.post-termination h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.post-termination-effects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.effect-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.effect-item i {
    color: #667eea;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.effect-item h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.effect-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.8rem;
    line-height: 1.5;
}

.terms-contact {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.contact-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.1rem;
    color: #718096;
    margin: 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-option:hover {
    background: #667eea;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.contact-option .contact-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.contact-option:hover .contact-icon {
    background: white;
    color: #667eea;
}

.refund-summary {
    margin-bottom: 3rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.summary-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.summary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 700;
}

.summary-card p {
    color: #718096;
    margin: 0;
    font-size: 0.9rem;
}

.refund-conditions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.condition-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.condition-card.eligible {
    border-left: 4px solid #10b981;
    background: #f0fff4;
}

.condition-card.not-eligible {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

.condition-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.condition-header i {
    font-size: 1.2rem;
}

.condition-card.eligible .condition-header i {
    color: #10b981;
}

.condition-card.not-eligible .condition-header i {
    color: #ef4444;
}

.condition-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.condition-card.eligible .condition-header h4 {
    color: #065f46;
}

.condition-card.not-eligible .condition-header h4 {
    color: #991b1b;
}

.condition-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.condition-card.eligible li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

.condition-card.not-eligible li::before {
    content: '×';
    color: #ef4444;
    font-weight: bold;
}

.refund-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    bottom: -2rem;
    width: 2px;
    height: 2rem;
    background: #e2e8f0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.step-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.step-details {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.step-details span {
    font-weight: 600;
    color: #2d3748;
    display: block;
    margin-bottom: 0.5rem;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.step-details li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-method {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.method-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.detail-label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.method-note {
    font-size: 0.8rem;
    color: #718096;
    font-style: italic;
    margin: 0;
}

.partial-refund-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.scenario {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.scenario-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b 0%, #d69e2e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.scenario-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.scenario-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.calculation-example {
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #92400e;
}

.refund-calculator {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.refund-calculator h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.calculator-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.calc-row.total {
    background: #667eea;
    color: white;
    font-weight: 600;
}

.calc-label {
    font-weight: 500;
}

.calc-value {
    font-weight: 600;
}

.request-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.request-method {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.method-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.method-header i {
    color: #667eea;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.method-header h4 {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.response-time {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.method-body p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.required-info h5,
.support-features h5,
.phone-tips h5,
.form-advantages h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.required-info ul,
.support-features ul,
.phone-tips ul,
.form-advantages ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.required-info li,
.support-features li,
.phone-tips li,
.form-advantages li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.required-info li::before,
.support-features li::before,
.phone-tips li::before,
.form-advantages li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
}

.special-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.special-case {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.case-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.case-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.case-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.case-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.case-content li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

.case-example {
    background: #ebf8ff;
    border: 1px solid #3182ce;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #1e40af;
}

.refund-faq {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.refund-faq h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 600;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    color: #667eea;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.faq-question h4 {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.faq-answer p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.refund-contact {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.refund-contact .contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.refund-contact .contact-header {
    margin-bottom: 2rem;
}

.refund-contact .contact-header i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.refund-contact .contact-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.refund-contact .contact-header p {
    font-size: 1.1rem;
    color: #718096;
    margin: 0;
}

.refund-contact .contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.refund-contact .contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.refund-contact .contact-option:hover {
    background: #667eea;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.refund-contact .contact-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.refund-contact .contact-option:hover .contact-icon {
    background: white;
    color: #667eea;
}

.refund-contact .contact-info {
    text-align: center;
}

.refund-contact .contact-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.refund-contact .contact-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.refund-contact .response-time {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.refund-contact .contact-option:hover .response-time {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cookie-banner-demo {
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.banner-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.banner-icon {
    width: 50px;
    height: 50px;
    background: #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.banner-content {
    flex: 1;
}

.banner-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #92400e;
    font-weight: 600;
}

.banner-content p {
    color: #78350f;
    margin: 0;
    font-size: 0.9rem;
}

.banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-accept,
.btn-settings,
.btn-reject {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #10b981;
    color: white;
}

.btn-accept:hover {
    background: #059669;
}

.btn-settings {
    background: #667eea;
    color: white;
}

.btn-settings:hover {
    background: #5a67d8;
}

.btn-reject {
    background: #ef4444;
    color: white;
}

.btn-reject:hover {
    background: #dc2626;
}

.cookie-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.explanation-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.explanation-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.explanation-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.explanation-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.explanation-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.tech-details,
.process-steps,
.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-details span,
.process-steps span,
.security-features span {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-benefits {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.cookie-benefits h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.benefit-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.benefit-item span {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.cookie-types-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-type-card.essential {
    border-left: 4px solid #10b981;
}

.cookie-type-card.functional {
    border-left: 4px solid #3182ce;
}

.cookie-type-card.analytics {
    border-left: 4px solid #f59e0b;
}

.cookie-type-card.marketing {
    border-left: 4px solid #ef4444;
}

.type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.type-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.cookie-type-card.essential .type-icon {
    background: #10b981;
}

.cookie-type-card.functional .type-icon {
    background: #3182ce;
}

.cookie-type-card.analytics .type-icon {
    background: #f59e0b;
}

.cookie-type-card.marketing .type-icon {
    background: #ef4444;
}

.type-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #2d3748;
    font-weight: 600;
}

.type-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.type-status.required {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.type-status.optional {
    background: #f0fff4;
    color: #065f46;
    border: 1px solid #10b981;
}

.type-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.cookie-examples {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.example-item {
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #4a5568;
}

.example-item strong {
    color: #2d3748;
    font-family: 'Courier New', monospace;
}

.type-details {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
}

.detail-value {
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 600;
}

.cookie-management-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.management-method {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.management-method .method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.management-method .method-header i {
    color: #667eea;
    font-size: 1.2rem;
}

.management-method .method-header h4 {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.method-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.cookie-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.control-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.control-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.control-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.control-desc {
    font-size: 0.8rem;
    color: #718096;
}

.control-toggle {
    position: relative;
}

.control-toggle input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background: #cbd5e0;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.control-toggle input[type="checkbox"]:checked+.toggle-label {
    background: #667eea;
}

.control-toggle input[type="checkbox"]:checked+.toggle-label::after {
    transform: translateX(26px);
}

.control-toggle input[type="checkbox"]:disabled+.toggle-label {
    opacity: 0.5;
    cursor: not-allowed;
}

.control-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-save,
.btn-reset {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save {
    background: #10b981;
    color: white;
}

.btn-save:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-reset {
    background: #ef4444;
    color: white;
}

.btn-reset:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.browser-settings {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.browser-settings h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.browser-settings p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.browser-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.browser-guide {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.browser-guide:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.browser-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.browser-icon i {
    font-size: 1.5rem;
    color: #667eea;
}

.browser-content h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
    font-weight: 600;
}

.browser-content ol {
    padding-left: 1rem;
    margin: 0;
}

.browser-content li {
    margin-bottom: 0.25rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.cookie-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fffbeb;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #f59e0b;
}

.cookie-warning i {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.cookie-warning h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #92400e;
    font-weight: 600;
}

.cookie-warning p {
    margin: 0;
    color: #78350f;
}

.third-party-cookies {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.third-party-service {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.third-party-service:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.service-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.service-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #2d3748;
    font-weight: 600;
}

.service-purpose {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-cookies {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cookie-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    align-items: center;
}

.cookie-name {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2d3748;
    background: #f7fafc;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.cookie-purpose {
    color: #4a5568;
    font-size: 0.9rem;
}

.cookie-duration {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.service-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-links a {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-links a:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-measure {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.security-measure:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.measure-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.measure-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.measure-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.measure-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.measure-details span {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.privacy-protection {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.privacy-protection h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.protection-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.protection-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.protection-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.protection-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.protection-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.cookie-settings-panel {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.settings-header {
    text-align: center;
    margin-bottom: 2rem;
}

.settings-header i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.settings-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.settings-header p {
    color: #718096;
    font-size: 1.1rem;
    margin: 0;
}

.settings-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setting-category {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-header h3 {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.toggle-switch {
    position: relative;
}

.toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background: #cbd5e0;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input[type="checkbox"]:checked+label {
    background: #667eea;
}

.toggle-switch input[type="checkbox"]:checked+label::after {
    transform: translateX(30px);
}

.toggle-switch input[type="checkbox"]:disabled+label {
    opacity: 0.5;
    cursor: not-allowed;
}

.setting-category p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-count {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.settings-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-save-settings,
.btn-accept-all,
.btn-reject-all {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-save-settings {
    background: #667eea;
    color: white;
}

.btn-save-settings:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.btn-accept-all {
    background: #10b981;
    color: white;
}

.btn-accept-all:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-reject-all {
    background: #ef4444;
    color: white;
}

.btn-reject-all:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.disclaimer-summary {
    margin-bottom: 3rem;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.summary-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.summary-card.warning::before {
    background: #f59e0b;
}

.summary-card.info::before {
    background: #3182ce;
}

.summary-card.caution::before {
    background: #ef4444;
}

.summary-card.legal::before {
    background: #10b981;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.summary-card.warning .card-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d69e2e 100%);
}

.summary-card.info .card-icon {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
}

.summary-card.caution .card-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.summary-card.legal .card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.summary-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 700;
}

.summary-card p {
    color: #718096;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.general-disclaimers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.disclaimer-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.disclaimer-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.disclaimer-card.critical {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

.disclaimer-card.informational {
    border-left: 4px solid #3182ce;
    background: #ebf8ff;
}

.disclaimer-card.responsibility {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.disclaimer-header i {
    font-size: 1.2rem;
}

.disclaimer-card.critical .disclaimer-header i {
    color: #ef4444;
}

.disclaimer-card.informational .disclaimer-header i {
    color: #3182ce;
}

.disclaimer-card.responsibility .disclaimer-header i {
    color: #f59e0b;
}

.disclaimer-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.disclaimer-card.critical .disclaimer-header h4 {
    color: #991b1b;
}

.disclaimer-card.informational .disclaimer-header h4 {
    color: #1e40af;
}

.disclaimer-card.responsibility .disclaimer-header h4 {
    color: #92400e;
}

.disclaimer-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.disclaimer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disclaimer-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.disclaimer-content li::before {
    content: '•';
    font-weight: bold;
    font-size: 1.2rem;
}

.disclaimer-card.critical .disclaimer-content li::before {
    color: #ef4444;
}

.disclaimer-card.informational .disclaimer-content li::before {
    color: #3182ce;
}

.disclaimer-card.responsibility .disclaimer-content li::before {
    color: #f59e0b;
}

.prediction-disclaimers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.prediction-category {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.prediction-category:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.category-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.accuracy-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.stat-label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.disclaimer-note {
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: #92400e;
}

.methodology-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.factor-group {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.factor-group h5 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
    font-weight: 600;
}

.factor-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.factor-group li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #4a5568;
}

.factor-group li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
}

.time-limitations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.time-label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.time-value {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.risk-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #ef4444;
}

.risk-warning i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.risk-warning h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #991b1b;
    font-weight: 600;
}

.risk-warning p {
    margin: 0;
    color: #7f1d1d;
    font-weight: 500;
}

.financial-limitations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.limitation-category {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.limitation-category:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.limitation-category.severe {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

.limitation-category.moderate {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

.limitation-category.excluded {
    border-left: 4px solid #6b7280;
    background: #f9fafb;
}

.limitation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.limitation-header i {
    font-size: 1.2rem;
}

.limitation-category.severe .limitation-header i {
    color: #ef4444;
}

.limitation-category.moderate .limitation-header i {
    color: #f59e0b;
}

.limitation-category.excluded .limitation-header i {
    color: #6b7280;
}

.limitation-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.limitation-category.severe .limitation-header h4 {
    color: #991b1b;
}

.limitation-category.moderate .limitation-header h4 {
    color: #92400e;
}

.limitation-category.excluded .limitation-header h4 {
    color: #374151;
}

.limitation-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.limitation-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.limitation-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.limitation-content li::before {
    content: '×';
    font-weight: bold;
    font-size: 1.2rem;
}

.limitation-category.severe .limitation-content li::before {
    color: #ef4444;
}

.limitation-category.moderate .limitation-content li::before {
    color: #f59e0b;
}

.limitation-category.excluded .limitation-content li::before {
    color: #6b7280;
}

.limitation-amount {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    border: 2px dashed #e2e8f0;
}

.limitation-note {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: #0c4a6e;
    font-style: italic;
}

.financial-advice {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.financial-advice h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.advice-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.advice-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.advice-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.advice-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.advice-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.technical-disclaimers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tech-category {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-category:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tech-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.tech-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.tech-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    gap: 1rem;
}

.detail-type {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
    min-width: 100px;
}

.detail-desc {
    color: #4a5568;
    font-size: 0.9rem;
    text-align: right;
}

.data-sources {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.source-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.source-name {
    font-weight: 500;
    color: #2d3748;
    font-size: 0.9rem;
}

.source-reliability {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.data-disclaimer {
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: #92400e;
}

.compatibility-matrix {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.compat-item.supported i {
    color: #10b981;
}

.compat-item.limited i {
    color: #f59e0b;
}

.compat-item.unsupported i {
    color: #ef4444;
}

.compat-item span {
    color: #4a5568;
}

.performance-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #0ea5e9;
}

.performance-notice i {
    color: #0ea5e9;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.performance-notice h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #0c4a6e;
    font-weight: 600;
}

.performance-notice p {
    margin: 0;
    color: #075985;
}

.legal-warnings {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.warning-category {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.warning-category:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.warning-category.critical {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

.warning-category.moderate {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

.warning-category.informational {
    border-left: 4px solid #3182ce;
    background: #ebf8ff;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.warning-header i {
    font-size: 1.2rem;
}

.warning-category.critical .warning-header i {
    color: #ef4444;
}

.warning-category.moderate .warning-header i {
    color: #f59e0b;
}

.warning-category.informational .warning-header i {
    color: #3182ce;
}

.warning-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.warning-category.critical .warning-header h4 {
    color: #991b1b;
}

.warning-category.moderate .warning-header h4 {
    color: #92400e;
}

.warning-category.informational .warning-header h4 {
    color: #1e40af;
}

.warning-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.legal-requirements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.requirement-item i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.requirement-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.requirement-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.license-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.info-label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.third-party-warnings {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    margin-top: 1rem;
}

.third-party-warnings ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.third-party-warnings li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.third-party-warnings li::before {
    content: '⚠';
    color: #f59e0b;
    font-size: 1rem;
}

.jurisdiction-notice {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.jurisdiction-notice h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.jurisdiction-notice p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.jurisdiction-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.jurisdiction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.jurisdiction-label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.jurisdiction-value {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.addiction-warnings {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.addiction-section {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.addiction-section:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.section-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.symptom-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.symptom-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.symptom-item i {
    color: #ef4444;
    font-size: 1.1rem;
}

.symptom-item span {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.protection-measures {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.measure-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.measure-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.measure-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.measure-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.measure-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.help-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #2d3748;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.25rem;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info span {
    color: #718096;
    font-size: 0.9rem;
}

.responsible-gaming {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f0fff4;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #10b981;
}

.responsible-gaming i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.responsible-gaming h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #065f46;
    font-weight: 600;
}

.responsible-gaming p {
    margin: 0;
    color: #047857;
    font-weight: 500;
}

.emergency-contacts {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.emergency-header {
    margin-bottom: 2rem;
}

.emergency-header i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.emergency-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #991b1b;
    font-weight: 700;
}

.emergency-header p {
    font-size: 1.1rem;
    color: #7f1d1d;
    margin: 0;
    font-weight: 500;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.emergency-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
    border: 1px solid #fecaca;
    transition: all 0.3s ease;
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.emergency-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.emergency-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #991b1b;
    font-weight: 700;
}

.emergency-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ef4444;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.emergency-desc {
    color: #7f1d1d;
    margin-bottom: 1rem;
    font-weight: 500;
}

.emergency-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.emergency-features span {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.final-warning {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid #ef4444;
}

.warning-container {
    max-width: 800px;
    margin: 0 auto;
}

.warning-icon {
    width: 80px;
    height: 80px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.warning-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #991b1b;
    font-weight: 900;
}

.warning-content p {
    font-size: 1.2rem;
    color: #7f1d1d;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.acknowledgment {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.1rem;
    color: #991b1b;
    font-weight: 600;
}

.checkbox-container input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 25px;
    height: 25px;
    background: white;
    border: 2px solid #ef4444;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:checked~.checkmark {
    background: #ef4444;
}

.checkbox-container input[type="checkbox"]:checked~.checkmark::after {
    display: block;
}

@media (max-width: 768px) {

    .summary-grid,
    .summary-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .refund-conditions,
    .payment-methods,
    .partial-refund-scenarios,
    .request-methods,
    .special-cases,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step::after {
        display: none;
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-actions {
        justify-content: center;
    }

    .cookie-explanation,
    .browser-guides,
    .third-party-cookies,
    .security-measures,
    .prediction-disclaimers,
    .financial-limitations,
    .technical-disclaimers,
    .legal-warnings,
    .addiction-warnings {
        grid-template-columns: 1fr;
    }

    .methodology-factors {
        grid-template-columns: 1fr;
    }

    .cookie-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
    }

    .detail-desc {
        text-align: center;
    }

    .emergency-grid {
        grid-template-columns: 1fr;
    }

    .warning-content h2 {
        font-size: 2rem;
    }

    .warning-content p {
        font-size: 1.1rem;
    }

    .checkbox-container {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-subtitle {
        font-size: 1rem;
    }

    .policy-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .settings-actions,
    .control-actions {
        flex-direction: column;
    }

    .emergency-number {
        font-size: 1.5rem;
    }

    .warning-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}