/* ========================================
   PRIVACY POLICY SECTION STYLES
   ======================================== */

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, #f5f7fa 0%, #e8eef2 100%);
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(0, 86, 157, 0.015) 50px, rgba(0, 86, 157, 0.015) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(109, 110, 113, 0.01) 50px, rgba(109, 110, 113, 0.01) 100px);
    pointer-events: none;
}

.privacy-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c0c0c0 0%, #d4d4d4 25%, #e8e8e8 50%, #d4d4d4 75%, #c0c0c0 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-section .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

/* Update Info */
.update-info {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(192, 192, 192, 0.2);
    border-left: 4px solid #00569D;
}

.update-info i {
    font-size: 20px;
    color: #00569D;
}

.update-info span {
    font-size: 14px;
    color: #4a5568;
}

.update-info strong {
    color: #00569D;
    font-weight: 600;
}

/* Privacy Content */
.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Privacy Block */
.privacy-block {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(192, 192, 192, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 30px;
}

.privacy-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c0c0c0 0%, #e8e8e8 50%, #c0c0c0 100%);
}

/* Block Number */
.block-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #d4d4d4 0%, #a0a0a0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Block Content */
.block-content {
    flex: 1;
}

.block-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.block-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.block-content strong {
    color: #00569D;
    font-weight: 600;
}

/* Company Info */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #00569D;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #2d3748;
}

.info-item i {
    color: #00569D;
    font-size: 16px;
}

/* Data Categories */
.data-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
}

.data-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #00569D;
    transition: all 0.3s ease;
}

.data-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.data-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #00569D 0%, #003d73 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 86, 157, 0.3);
}

.data-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.data-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #718096;
    margin: 0;
}

/* Purpose List */
.purpose-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.purpose-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.purpose-list li:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.purpose-list li i {
    color: #43e97b;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.purpose-list li span {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

/* Transfer Grid */
.transfer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.transfer-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.transfer-card:hover {
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.transfer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #00569D 0%, #003d73 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(0, 86, 157, 0.3);
}

.transfer-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.transfer-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #718096;
    margin: 0;
}

/* Legal Basis */
.legal-basis {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.basis-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #00569D;
}

.basis-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #d4d4d4 0%, #a0a0a0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.12),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.basis-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 8px 0 0 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.right-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.right-card:hover {
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.right-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
}

.right-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.right-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #718096;
    margin: 0;
}

/* Contact Block */
.contact-block .block-content {
    width: 100%;
}

.contact-info-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 25px;
    border: 2px solid rgba(0, 86, 157, 0.1);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.contact-header i {
    font-size: 28px;
    color: #00569D;
}

.contact-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 15px;
    align-items: center;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #00569D;
    font-size: 14px;
}

.contact-label i {
    font-size: 16px;
}

.contact-value {
    font-size: 14px;
    color: #2d3748;
    line-height: 1.6;
}

.contact-value a {
    color: #00569D;
    text-decoration: none;
    font-weight: 600;
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-action {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
}

/* Important Notice */
.important-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-top: 40px;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.notice-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 10px;
}

.notice-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 0;
    }

    .privacy-block {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .block-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .block-content h2 {
        font-size: 20px;
    }

    .contact-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .transfer-grid {
        grid-template-columns: 1fr;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .important-notice {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .update-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
