/* Policy Pages Shared Styles */
.policy-content {
    padding: 4rem 2rem;
    background: #f8f9fa;
    min-height: calc(100vh - 300px);
    position: relative;
    margin-bottom: -1px; /* Fix wave gap */
}

.policy-content .container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.policy-content h1 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.policy-content .last-updated {
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-content section {
    margin-bottom: 1.5rem;
}

.policy-content h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.policy-content ul,
.policy-content ol {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-content li:last-child {
    margin-bottom: 0;
}

.policy-content a {
    color: #4285f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* Footer Links - Always White */
footer .footer-links a {
    color: white !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer .footer-links a:hover {
    opacity: 1;
    text-decoration: none;
}

footer .footer-links a.active {
    opacity: 1;
    font-weight: 500;
}

/* Wave Transitions */
.wave-transition {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.wave-transition svg {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
}

.wave-white-to-light path {
    fill: #f8f9fa;
}

.wave-light-to-white path {
    fill: #f8f9fa;
}

.wave-light-to-green path {
    fill: #10B981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1rem;
    }

    .policy-content .container {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.25rem;
    }

    .wave-transition {
        height: 100px;
    }
}
