:root {
    --primary: #5d93e4;
    --secondary: #f5f7fa;
    --accent: #ff6b6b;
    --text: #333;
    --light-text: #666;
    --white: #fff;
    --dark-blue: #2c3e50;
    --emergency: #ff4757;
    --success: #4CAF50;
    --link-color: #64b5f6;
    --depression-blue: #3a7ca5;
    --policy-bg: #f8fafc;
}

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

body {
    background-color: var(--secondary);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.mobile-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu .bar:nth-child(1) {
    top: 0;
}

.mobile-menu .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu .bar:nth-child(3) {
    bottom: 0;
}

.mobile-menu.active .bar:nth-child(1) {
    transform: translateY(13.5px) rotate(45deg);
}

.mobile-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active .bar:nth-child(3) {
    transform: translateY(-13.5px) rotate(-45deg);
}

/* Page Header */
.page-header {
    background-color: var(--depression-blue);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Policy Content */
.policy-content {
    padding: 80px 0;
    background-color: var(--policy-bg);
}

.policy-container {
    background-color: var(--white);
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.policy-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-intro {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    color: var(--depression-blue);
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.policy-section h2 i {
    margin-right: 15px;
    color: var(--depression-blue);
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

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

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

.policy-section strong {
    color: var(--depression-blue);
}

.contact-info {
    list-style: none;
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 25px;
    color: var(--depression-blue);
}

.policy-consent {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 18px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .policy-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .policy-content {
        padding: 60px 0;
    }
    
    .policy-container {
        padding: 30px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 130px 0 60px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .policy-container {
        padding: 25px 20px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .policy-section h2 i {
        margin-right: 10px;
    }
}
