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

body {
    background-color: #f8f9fa;
    color: #333;
}

/* Sticky Navbar Styles */
/* .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    color: #3aaf85;
    margin-right: 10px;
}

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

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #3aaf85;
    background: rgba(255, 255, 255, 0.05);
}

.contact-btn {
    background: #3aaf85;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn:hover {
    background: #2e8b68;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
} */

/* Policy Page Styles */
.policy-hero {
    position: relative;
    background: linear-gradient(rgba(25, 45, 25, 0.9), rgba(17, 28, 17, 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: #fff;
    padding: 150px 20px 100px;
    text-align: center;
}

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

.policy-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.policy-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.policy-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 50px;
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 2.2rem;
    color: #2a3d1f;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3aaf85;
}

.policy-section h3 {
    font-size: 1.6rem;
    color: #2a3d1f;
    margin: 30px 0 15px;
}

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

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

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.policy-section a {
    color: #3aaf85;
    text-decoration: none;
    transition: all 0.3s;
}

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

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

/* Footer */
/* .footer {
    background: #1a1a1a;
    color: #fff;
    padding: 70px 20px 30px;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3aaf85;
}

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

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

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

.footer-links a:hover {
    color: #3aaf85;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #3aaf85;
    margin-right: 10px;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #3aaf85;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    margin-top: 50px;
} */

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

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

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

@media (max-width: 768px) {
    /* .nav-menu {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .hamburger {
        display: block;
    } */

    .policy-hero {
        padding: 120px 20px 80px;
    }

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

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

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

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

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

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