.privacy-wrapper {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f0f4f8 0%, #ffffff 100%);
    padding: 2rem 0 4rem;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.privacy-hero {
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    color: white;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.privacy-hero-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: privacyFloat 3s ease-in-out infinite;
}

@keyframes privacyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

.privacy-hero-title {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.privacy-hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin: 0;
    font-weight: 400;
}

.privacy-main-content {
    background: white;
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.privacy-intro-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 5px solid #dc2626;
}

.privacy-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #dc2626;
    display: inline-block;
}

.privacy-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 1.25rem;
}

.privacy-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.privacy-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.privacy-info-item i {
    font-size: 1.75rem;
    color: #dc2626;
    flex-shrink: 0;
}

.privacy-info-item strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.privacy-content-block {
    margin-bottom: 3.5rem;
}

.privacy-content-block:last-of-type {
    margin-bottom: 0;
}

.privacy-content-section {
    margin-bottom: 2.5rem;
}

.privacy-subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2.5rem 0 1.25rem;
    padding-left: 1rem;
    border-left: 4px solid #dc2626;
}

.privacy-highlight-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 14px;
    padding: 2rem;
    margin: 1.5rem 0;
    border: 2px solid #fecaca;
}

.privacy-list-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 1rem;
}

.privacy-data-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-data-list li {
    padding: 0.85rem 1.25rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.privacy-data-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-purpose-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.privacy-purpose-box .privacy-list-title {
    color: #1e40af;
}

.privacy-purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}

.privacy-purpose-item {
    padding: 0.85rem 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #334155;
    border-left: 3px solid #3b82f6;
    transition: all 0.2s ease;
}

.privacy-purpose-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.15);
}

.privacy-warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 14px;
    padding: 1.75rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1.25rem;
    align-items: start;
    border: 2px solid #fcd34d;
}

.privacy-warning-box i {
    font-size: 2.25rem;
    color: #d97706;
    flex-shrink: 0;
}

.privacy-warning-box .privacy-text {
    margin: 0;
    color: #78350f;
}

.privacy-legal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-legal-list li {
    padding: 1rem 1.5rem 1rem 3rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    position: relative;
    border-left: 4px solid #0ea5e9;
    transition: all 0.3s ease;
}

.privacy-legal-list li:before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #0ea5e9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.privacy-legal-list li:hover {
    background: #e0f2fe;
    transform: translateX(6px);
}

.privacy-notice-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 14px;
    padding: 1.75rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1.25rem;
    align-items: start;
    border: 2px solid #a7f3d0;
}

.privacy-notice-box i {
    font-size: 2.25rem;
    color: #059669;
    flex-shrink: 0;
}

.privacy-notice-box .privacy-text {
    margin: 0;
    color: #064e3b;
}

.privacy-transfer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.privacy-transfer-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.privacy-transfer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #dc2626;
}

.privacy-transfer-card i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.privacy-transfer-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.privacy-transfer-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.privacy-rights-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 16px;
    padding: 2.25rem;
    margin: 2rem 0;
    border: 3px solid #fecaca;
}

.privacy-rights-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.privacy-rights-list li {
    padding: 1rem 1rem 1rem 3.5rem;
    margin-bottom: 0.85rem;
    background: white;
    border-radius: 10px;
    position: relative;
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.privacy-rights-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-rights-list li i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #dc2626;
    font-size: 1.25rem;
}

.privacy-veli-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 3px solid #e9d5ff;
}

.privacy-veli-section .privacy-section-title {
    border-bottom-color: #a855f7;
}

.privacy-signature-box {
    background: white;
    border-radius: 14px;
    padding: 2.5rem;
    margin-top: 2.5rem;
    border: 2px dashed #c084fc;
}

.privacy-signature-field {
    margin-bottom: 2rem;
}

.privacy-signature-field:last-child {
    margin-bottom: 0;
}

.privacy-signature-field label {
    display: block;
    font-weight: 700;
    color: #6b21a8;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.privacy-signature-line {
    border-bottom: 2px solid #c084fc;
    height: 50px;
    margin-top: 0.5rem;
}

.privacy-contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.privacy-contact-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.privacy-contact-card i {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: #dc2626;
}

.privacy-contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.privacy-contact-card p {
    color: #cbd5e1;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.privacy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
}

.privacy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.45);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.privacy-footer-note {
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 3rem;
    border-top: 3px solid #e5e7eb;
    color: #64748b;
}

.privacy-footer-note p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.privacy-footer-note strong {
    color: #1e293b;
}

@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 1.5rem 0 3rem;
    }

    .privacy-hero {
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
        margin-bottom: 2rem;
    }

    .privacy-hero-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .privacy-hero-title {
        font-size: 2rem;
    }

    .privacy-hero-subtitle {
        font-size: 1rem;
    }

    .privacy-main-content {
        padding: 2.5rem 1.75rem;
        border-radius: 16px;
    }

    .privacy-section-title {
        font-size: 1.65rem;
    }

    .privacy-subsection-title {
        font-size: 1.3rem;
    }

    .privacy-text {
        font-size: 1rem;
    }

    .privacy-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .privacy-purpose-grid {
        grid-template-columns: 1fr;
    }

    .privacy-transfer-grid {
        grid-template-columns: 1fr;
    }

    .privacy-contact-section {
        grid-template-columns: 1fr;
    }

    .privacy-veli-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 2rem 1.25rem;
        border-radius: 14px;
    }

    .privacy-hero-icon {
        font-size: 3rem;
    }

    .privacy-hero-title {
        font-size: 1.75rem;
    }

    .privacy-hero-subtitle {
        font-size: 0.95rem;
    }

    .privacy-main-content {
        padding: 2rem 1.25rem;
    }

    .privacy-section-title {
        font-size: 1.45rem;
    }

    .privacy-subsection-title {
        font-size: 1.2rem;
    }

    .privacy-intro-box {
        padding: 1.5rem;
    }

    .privacy-highlight-box {
        padding: 1.5rem;
    }

    .privacy-rights-box {
        padding: 1.75rem;
    }

    .privacy-data-list li {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .privacy-rights-list li {
        padding: 0.85rem 0.85rem 0.85rem 3rem;
        font-size: 0.95rem;
    }

    .privacy-contact-card {
        padding: 2rem 1.5rem;
    }

    .privacy-veli-section {
        padding: 1.75rem 1.25rem;
    }

    .privacy-signature-box {
        padding: 1.75rem 1.25rem;
    }
}

