:root {
    --primary-purple: #6a1b9a;
    --dark-purple: #4a148c;
    --light-purple: #9c27b0;
    --accent-purple: #8e24aa;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gray-bg: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--gray-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--text-light);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.logo a {
    color: var(--text-light);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #e1bee7;
}

.policy-hero {
    background: linear-gradient(rgba(106, 27, 154, 0.8), rgba(74, 20, 140, 0.9)), url('https://images.unsplash.com/photo-1582568352951-879d38c42d39?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 8rem 2rem 5rem;
    margin-top: 70px;
}

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

.policy-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.policy-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.policy-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--primary-purple);
    margin-bottom: 2rem;
}

.policy-tab {
    padding: 1rem 2rem;
    background-color: #e0d4e9;
    color: var(--dark-purple);
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-right: 0.5rem;
}

.policy-tab:hover {
    background-color: #d1c4e9;
}

.policy-tab.active {
    background-color: var(--primary-purple);
    color: white;
}

.policy-content {
    display: none;
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.policy-content.active {
    display: block;
}

.policy-content h2 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-purple);
}

.policy-content h3 {
    color: var(--dark-purple);
    margin: 1.5rem 0 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul, .policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-purple);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background-color: var(--dark-purple);
    transform: translateY(-5px);
}

footer {
    background-color: #333;
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: #e1bee7;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-purple);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .policy-hero h1 {
        font-size: 2.2rem;
    }
    
    .policy-hero p {
        font-size: 1rem;
    }
    
    .policy-tabs {
        flex-direction: column;
    }
    
    .policy-tab {
        margin-bottom: 0.5rem;
        border-radius: 5px;
    }
}