@import url('variables.css');
@import url('flexbox.css');
@import url('styles.css');

/* Aeonik Font */
@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Regular.woff2') format('woff2'),
         url('../fonts/Aeonik-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Medium.woff2') format('woff2'),
         url('../fonts/Aeonik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Bold.woff2') format('woff2'),
         url('../fonts/Aeonik-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Satoshi Font */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
         url('../fonts/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
         url('../fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
         url('../fonts/Satoshi-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* ==================================
            PRIVACY - ENHANCED
===================================== */

/* Header Styles */
.privacy-header-main {
    width: 70%;
    display: flex;
    justify-content: center;
}

.privacy-header-content {
    padding: 34px 16px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.privacy-title {
    font-family: 'Satoshi', sans-serif;
    white-space: nowrap;
    text-align: center;
    margin: 0 auto 16px auto;
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
}

.privacy-subtitle {
    font-family: 'Satoshi', sans-serif;
    margin: 0 auto 24px auto;
    font-size: 1.2rem;
    color: black;
    line-height: 1.2;
    max-width: 600px;
}

/* Privacy Badges */
.privacy-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0f9ff;
    border: 1px solid #0384C7;
    border-radius: 20px;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0384C7;
}

.privacy-badge-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .privacy-badge-icon img {
        width: 17px;
        height: auto;
        display: block;
    }

/* Main Content Layout */
.body {
    font-family: 'Satoshi', sans-serif;
    color: black;
    display: flex;
    justify-content: center;
    padding: 60px 20px 0 20px;
    min-height: calc(100vh - 200px);
}

.privacy-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin-bottom: 80px;
}

/* Hero Section */
.privacy-hero-section {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: #E2F3FF;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    justify-content: center;
}

.privacy-hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.privacy-hero-title {
    font-family: 'Aeonik', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin: 0;
    line-height: 1.2;
}

.privacy-hero-description {
    font-size: 1.1rem;
    color: black;
    line-height: 1.3;
    margin: 0;
}

.privacy-hero-stats {
    justify-content: center;
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.privacy-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.privacy-stat-number {
    font-family: 'Aeonik', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0384C7;
    margin-bottom: 4px;
}

.privacy-stat-label {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
}

.privacy-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-hero-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: -60px; 
    z-index: 2;
}

    .privacy-hero-image-wrapper img {
        width: 280px;
        height: auto;
    }

/* Privacy Sections */
.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.privacy-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.privacy-section:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.privacy-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.privacy-section-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden; 
}

    .privacy-section-icon img {
        max-width: 60%;
        max-height: 60%;
        object-fit: contain;
        display: block;
    }

    .privacy-section-header h2 {
        font-family: 'Aeonik', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: black;
        margin: 0;
    }

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: black;
    margin: 0 0 24px 0;
    text-align: justify;
}

.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .privacy-feature img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .privacy-feature span {
        font-size: 1.1rem;
        color: black;
        font-weight: 500;
    }

.privacy-section-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.privacy-section-text {
    flex: 1;
}

.privacy-section-image {
    flex: 0 0 300px;
    text-align: center;
    background-color: #E2F3FF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.privacy-section-image img {
    width: 100%;
    height: auto;
}

/* Trust Indicators Section */
.trust-indicators-section {
    margin-bottom: 80px;
}

.trust-indicators-header {
    text-align: center;
    margin-bottom: 40px;
}

.trust-indicators-header h2 {
    font-family: 'Aeonik', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: black;
    margin: 0 0 16px 0;
}

    .trust-indicators-header p {
        font-size: 1.1rem;
        color: black;
        margin: 0;
    }

.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.trust-indicator {
    background: #B4DAEF;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .trust-indicator:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        transform: translateY(-8px) scale(1.03);
    }

.trust-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .trust-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        display: block;
        transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

.trust-indicator:hover .trust-icon img {
    transform: scale(1.1);
}

.trust-content h4 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
    margin: 0 0 4px 0;
}

.trust-content p {
    font-size: 0.9rem;
    color: #1e293b;
    margin: 0;
}

/* Contact Section */
.privacy-contact-section {
    padding: 5px 40px 40px 40px;
    background: linear-gradient(135deg, #0384C7 0%, #0089D1 100%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(3, 132, 199, 0.3);
    text-align: center;
    color: white;
}

.privacy-contact-content {
    display: flex;
    justify-content: center !important;
    align-content: center !important;
    align-items: center !important;
    flex-direction: column;
    gap: 24px;
}

.privacy-contact-title {
    display: flex;
    font-family: 'Aeonik', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 6px;
    color: white;
}

.privacy-contact-description {
    display: flex;
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
    color: white;
    line-height: 1.4;
    text-align: center;
}

.privacy-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

    .privacy-contact-buttons .button-primary {
        background-color: #F4B425;
        color: #1a1a1a;
        border: none;
        padding: 16px 32px;
        font-family: 'Satoshi', sans-serif;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(244, 180, 37, 0.3);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }

.privacy-contact-buttons .button-primary:hover {
    background: #E5A020;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 180, 37, 0.4);
    color: white;
}

.privacy-contact-buttons .button-secondary-style {
    background: #F4B425;
    color: #1a1a1a;
    border: 2px solid #F4B425;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(244, 180, 37, 0.3);
}

.privacy-contact-buttons .button-secondary-style:hover {
    background: #E5A020;
    color: #1a1a1a;
    border-color: #E5A020;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 180, 37, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privacy-hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .privacy-hero-stats {
        justify-content: center;
    }
    
    .privacy-contact-section {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .body {
        padding: 40px 20px 0 20px;
    }

    .privacy-container {
        margin-bottom: 40px;
    }

    .privacy-header-main {
        width: 100%;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-subtitle {
        font-size: 16px;
        line-height: 1.2;
    }

    .privacy-badges {
        gap: 16px;
    }

    .privacy-hero-section {
        padding: 30px;
        margin-bottom: 60px;
    }

    .privacy-hero-title {
        font-size: 2rem;
    }

    .privacy-hero-stats {
        gap: 24px;
    }

    .privacy-stat-number {
        font-size: 1.5rem;
    }

    .privacy-section {
        padding: 30px;
    }

    .privacy-section-content {
        flex-direction: column;
        gap: 30px;
    }

    .privacy-section-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .trust-indicators-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicator {
        padding: 24px;
    }

    .privacy-contact-section {
        padding: 30px;
    }

    .privacy-contact-title {
        font-size: 1.75rem;
    }

    .privacy-contact-buttons {
        align-items: center;
    }

    .privacy-contact-buttons .button-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .body {
        padding: 30px 15px 0 15px;
    }

    .privacy-container {
        margin-bottom: 30px;
    }

    .privacy-title {
        font-size: 40px;
        white-space: normal; 
        word-wrap: break-word;
        word-break: break-word;
        line-height: 1;
        text-align: center;
    }

    .privacy-hero-section {
        padding: 24px;
    }

    .privacy-hero-title {
        font-size: 1.75rem;
    }

    .privacy-hero-stats {
        gap: 16px;
    }

    .privacy-stat-number {
        font-size: 1.25rem;
    }

    .privacy-section {
        padding: 24px;
    }

    .privacy-section-content {
        flex-direction: column;
        gap: 24px;
    }

    .privacy-section-image {
        flex: none;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .trust-indicator {
        padding: 20px;
    }

    .privacy-contact-section {
        padding: 24px;
    }

    .privacy-badges {
        flex-direction: column;
        gap: 12px;
    }

    .privacy-badge {
        font-size: 0.8rem;
    }

    .privacy-contact-buttons .button-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
} 