/* Privacy Policy Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
}

.policy-container {
    display: flex;
    gap: 40px;
}

/* Sidebar */
.policy-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sidebar-header {
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid #eee;
}

.sidebar-nav li:last-child {
    border-bottom: none;
}

.sidebar-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color-dark);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.sidebar-nav a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
}

.sidebar-nav a.active {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    font-weight: 500;
}

/* Main Content */
.policy-main {
    flex: 1;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

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

.policy-section h2 {
    color: var(--text-color-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color-light);
}

.policy-section h3 {
    color: var(--text-color-dark);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.contact-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.cta-content p {
    margin-bottom: 30px;
    color: var(--text-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .policy-container {
        flex-direction: column;
    }
    
    .policy-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }
    
    .sidebar-nav {
        display: flex;
        flex-wrap: wrap;
    }
    
    .sidebar-nav li {
        border-bottom: none;
        border-right: 1px solid #eee;
        flex: 1 0 auto;
    }
    
    .sidebar-nav li:last-child {
        border-right: none;
    }
    
    .sidebar-nav a {
        padding: 10px 15px;
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .sidebar-nav {
        flex-direction: column;
    }
    
    .sidebar-nav li {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .sidebar-nav a {
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
}
