/* Privacy Policy Page Styles */

/* Hero */
.pp-hero {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a252f 100%);
    padding: 6rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pp-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52,152,219,0.12) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

.pp-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.pp-hero-content h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pp-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.75rem;
}

/* Main Content */
.pp-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.pp-section {
    margin-bottom: 2.5rem;
}

.pp-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
}

.pp-section p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.pp-section ul {
    margin: 0.5rem 0 0.75rem 1.5rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.pp-section ul li {
    margin-bottom: 0.25rem;
}

.pp-effective {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}

.pp-intro {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-green);
    padding: 1.25rem 1.5rem;
    border-radius: 0 6px 6px 0;
    margin-bottom: 2.5rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .pp-hero-content h1 {
        font-size: 2.2rem;
    }

    .pp-main {
        padding: 2.5rem 1.25rem;
    }
}
