/* Policy Page Styles */
.policy-page {
    padding-top: 80px;
}

/* Hero Section */
.hero-policy {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/464939088_10234948141833388_555340795505353003_n.jpg') center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
    background: var(--light-gray);
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.policy-wrapper h2 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.policy-wrapper h2:first-child {
    margin-top: 0;
}

.policy-wrapper h3 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.policy-wrapper p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.policy-wrapper ul {
    margin: 15px 0 25px 20px;
    color: #555;
}

.policy-wrapper li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-wrapper a:hover {
    text-decoration: underline;
}

.last-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-policy h1 {
        font-size: 2rem;
    }

    .policy-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .policy-wrapper h2 {
        font-size: 1.6rem;
    }

    .policy-wrapper h3 {
        font-size: 1.3rem;
    }
} 