/* Reset and Base Styles */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --success-color: #4bb543;
    --warning-color: #f0ad4e;
    --danger-color: #d9534f;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    z-index: 1001;
    text-decoration: none !important;
}

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

.nav-center {
    display: flex;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    text-decoration: none !important;
    color: var(--dark-color) !important;
    padding: 5px 0;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none !important;
}

.call-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

/* Policy Page Styles */
.policy-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.85), rgba(79, 55, 201, 0.85)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
    padding: 150px 20px 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.policy-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

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

.policy-section {
    background: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.policy-section:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-5px);
}

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

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

.policy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #666;
    font-size: 1rem;
}

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

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

.last-updated {
    text-align: right;
    font-style: italic;
    color: #777;
    margin-top: 30px;
    font-size: 0.9rem;
}

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

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: white !important;
    opacity: 0.8;
    transition: var(--transition);
    text-decoration: none !important;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color) !important;
    transform: translateX(5px);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white !important;
    text-decoration: none !important;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom a {
    color: white !important;
    text-decoration: none !important;
}

.footer-bottom a:hover {
    color: var(--accent-color) !important;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policy-hero p {
        font-size: 1.1rem;
    }

    .policy-section {
        padding: 35px 30px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .policy-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 120px 20px 80px;
    }

    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 30px 25px;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-center {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-center.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .nav-right .call-btn span {
        display: none;
    }
}

@media (max-width: 576px) {
    .policy-hero {
        padding: 100px 20px 60px;
    }

    .policy-hero h1 {
        font-size: 1.8rem;
    }

    .policy-hero p {
        font-size: 1rem;
    }

    .policy-section {
        padding: 25px 20px;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }
}