:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --dark-gray: #475569;
    --medium-gray: #64748b;
    --light-gray: #e2e8f0;
    --light: #f8fafc;
    --white: #ffffff;
    --success: #10b981;
    --radius: 0.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    font-size: 14px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 36px;
}

.logo-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.8rem;
    transition: color 0.2s;
    white-space: nowrap;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--dark);
    cursor: pointer;
}

/* Policy Pages Styles */
.policy-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: calc(100vh - 150px);
}

.policy-container {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.policy-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.policy-header h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.policy-header p {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.policy-content h2 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--light-gray);
}

.policy-content h3 {
    font-size: 1rem;
    color: var(--dark);
    margin: 1rem 0 0.5rem;
}

.policy-content p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.policy-content ul, .policy-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.policy-content li {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.highlight-box {
    background-color: var(--light);
    border-left: 3px solid var(--primary);
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.85rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 0.85rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

/* FAQ Styles */
.faq-section {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-answer {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

/* Footer Styles */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 2rem 1rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

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

.footer-column li {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

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

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

.social-links a {
    color: var(--white);
    font-size: 1rem;
}

.copyright {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    color: var(--medium-gray);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 99;
    padding: 1rem;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (min-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .policy-page {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .navbar {
        padding: 1rem 2rem;
    }
    
    .policy-page {
        padding: 3rem 2rem;
    }
    
    .policy-header h1 {
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-links {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .policy-header h1 {
        font-size: 2rem;
    }
}