/* Privacy Policy - Following Landing Page Theme */

/* Reduce Hero Height for Privacy Page */
.hero {
    min-height: 50vh !important;
    padding: 60px 0 !important;
}

/* Hero Text Customization for Privacy Page */
.hero .hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.hero .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    margin: 0 auto;
    display: block;
    text-align: center;
    width: fit-content;
}

/* Simple and Professional Content Section */
.privacy-content-section {
    background: var(--white);
    padding: 60px 0;
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-200);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}

.privacy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px 0;
}

.privacy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue);
    margin: 20px 0 8px 0;
}

.privacy-section p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

/* Links */
.privacy-section a {
    color: var(--red-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.privacy-section a:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

/* Simple Lists */
.simple-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.simple-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.simple-list li:before {
    content: '•';
    color: var(--blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Simple Boxes */
.important-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    border-left: 4px solid #f59e0b;
}

.note {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.commitment {
    background: #dcfce7;
    border: 1px solid #16a34a;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    border-left: 4px solid #16a34a;
    font-weight: 500;
    color: var(--text-dark);
}

.disclaimer {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}



/* Footer Active Link */
.footer-links-col a.active {
    color: var(--white);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero .hero-text p {
        font-size: 1rem;
    }
    
    .privacy-content-section {
        padding: 40px 0;
    }
    
    .privacy-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .privacy-content-section {
        padding: 30px 0;
    }
    
    .privacy-wrapper {
        padding: 0 12px;
    }
    
    .privacy-section {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .important-note,
    .commitment,
    .note {
        padding: 12px;
    }
}

@media (max-width: 360px) {
    .privacy-wrapper {
        padding: 0 8px;
    }
}