/* ==========================================
   PRIVACY PAGE - MINIMAL & PREMIUM
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #86868b;
    --border-color: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================
   HEADER
   ========================================== */

.privacy-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.privacy-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.back-link:hover {
    color: var(--primary-color);
}

.site-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.privacy-content {
    padding: 80px 0 100px;
}

/* Title Section */
.privacy-title-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.privacy-subtitle {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

/* Introduction */
.privacy-intro {
    margin-bottom: 60px;
}

.privacy-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Sections */
.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.privacy-section {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
}

.section-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.section-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

.section-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    padding-left: 25px;
    position: relative;
}

.section-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.section-list li strong {
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact Email */
.contact-email {
    margin-top: 15px;
}

.email-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ==========================================
   FOOTER
   ========================================== */

.privacy-footer {
    background-color: #000000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-footer .footer-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.privacy-footer .footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.privacy-footer .footer-copyright {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media screen and (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .privacy-header {
        padding: 20px 0;
    }
    
    .site-name {
        font-size: 18px;
    }
    
    .privacy-content {
        padding: 50px 0 60px;
    }
    
    .privacy-title-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .privacy-title {
        font-size: 32px;
    }
    
    .privacy-subtitle {
        font-size: 13px;
    }
    
    .privacy-intro {
        margin-bottom: 40px;
    }
    
    .privacy-intro p {
        font-size: 16px;
    }
    
    .privacy-sections {
        gap: 40px;
    }
    
    .privacy-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-number {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .section-content p,
    .section-list li {
        font-size: 15px;
    }
    
    .privacy-footer .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .privacy-title {
        font-size: 28px;
    }
    
    .back-link {
        font-size: 13px;
    }
    
    .site-name {
        font-size: 16px;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background-color: var(--primary-color);
    color: #ffffff;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: #ffffff;
}
