/* Policy Page Specific Styles */

.page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/astoria_main_photo.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 5rem 0;
    margin-bottom: 2rem;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3.6rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.6rem;
    opacity: 0.9;
}

.policy-content {
    padding: 4rem 0 6rem;
}

.policy-content .container {
    max-width: 900px;
}

.policy-date {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 4rem;
}

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

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    position: relative;
    padding-bottom: 1rem;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 3px;
    background-color: var(--primary-color);
}

.policy-section h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.policy-section p, 
.policy-section ul {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.6rem;
}

.policy-section ul {
    padding-left: 2rem;
}

.policy-section ul li {
    margin-bottom: 0.8rem;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-section a:hover {
    color: var(--secondary-color);
}

/* Cookie Policy Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1.5rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table tr:hover {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .policy-section h2 {
        font-size: 2.2rem;
    }
    
    .policy-section h3 {
        font-size: 1.7rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 1rem;
        font-size: 1.4rem;
    }
    
    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}
