/* Privacy Policy Styles - PickFC */

/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f8fafc;
    line-height: 1.6;
    min-height: 100vh;
}

/* Main container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Header styles */
.header {
    background: linear-gradient(135deg, rgb(51, 70, 79) 0%, rgb(39, 41, 48) 100%);
    padding: 20px 30px;
    text-align: center;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo {
    width: 3em;
    height: 3em;
    margin: 0 auto 15px;
    display: block;
}

.header h1 {
    color: #86d1f4;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.header p {
    color: #b3e0f7;
    margin: 8px 0 0 0;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* Main content */
.main-content {
    padding: 40px 30px;
}

.intro-section {
    margin-bottom: 30px;
}

.last-updated {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 20px 0;
}

.intro-text {
    color: #475569;
    margin: 0 0 20px 0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

/* Sections */
.section {
    margin-bottom: 32px;
}

.section h2 {
    color: #1e293b;
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-left: 4px solid #86d1f4;
    padding-left: 16px;
}

.section h3 {
    color: #475569;
    margin: 16px 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.section p {
    color: #475569;
    margin: 0 0 12px 0;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.section ul {
    color: #475569;
    margin: 0 0 12px 0;
    padding-left: 20px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.section li {
    margin-bottom: 4px;
}

.section li strong {
    font-weight: 600;
}

/* Contact info box */
.contact-box {
    border-left: 4px solid #86d1f4;
    background-color: #f0f9ff;
    padding: 20px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.contact-box h3 {
    color: #1e40af;
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-box p {
    color: #1e40af;
    margin: 0 0 8px 0;
    font-size: 14px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box a {
    color: #86d1f4;
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #f8fafc;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.footer-nav {
    margin: 10px 0;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    font-weight: 500;
}

.footer-nav a.current {
    color: #86d1f4;
}

.footer-nav .separator {
    color: #cbd5e1;
}

.footer-copyright {
    color: #94a3b8;
    margin: 16px 0 0 0;
    font-size: 12px;
}

.footer-copyright strong {
    color: #86d1f4;
}

/* Links */
a {
    color: #86d1f4;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}