/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #ff6b00;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --white-color: #fff;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cl-red{
    color: red;
}
.cl-gray{
    color: gray;
}
.cl-blue{
    color: blue; 
}
.cl-darkblue{
    color: darkblue; 
}
.cl-footer-col{ 
    color: var(--white-color);
}

.pg-1 { 
    margin-top: 10px;
}
.pg-2 { 
    margin-top: 20px;
}
.pg-3 { 
    margin-top: 30px;
}
.pg-4 { 
    margin-top: 40px;
}
.pg-5 { 
    margin-top: 50px;
}
.pg-5 { 
    margin-top: 60px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer; 
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn.primary:hover {
    background-color: #004494;
    transform: translateY(-3px);
}

.btn.secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn.secondary:hover {
    background-color: #e05d00;
    transform: translateY(-3px);
}

.btn.small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

/* Header Styles */
.header {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    font-weight: 600;
    position: relative;
}

.navbar ul li a.active::after,
.navbar ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(21, 23, 150, 0.9), rgba(222, 223, 5, 0.3)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Quick Stats */
.quick-stats {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px 0;
}

.quick-stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

/* Sectors Section */
.sectors-section {
    padding: 80px 0;
}

.sectors-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--primary-color);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sector-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sector-card:hover img {
    transform: scale(1.1);
}

.sector-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white-color);
    margin: 0;
}

/* Success Stories */
.success-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.success-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--primary-color);
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.story-card {
    display: flex;
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding: 30px;
}

.story-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.story-content p {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gray-color);
}

/* Events Section */
.events-section {
    padding: 80px 0;
}

.events-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--primary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-details {
    padding: 20px;
    flex: 1;
}

.event-details h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.event-details p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

/* Newsletter */
.newsletter {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 50px 0;
}

.newsletter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--primary-color);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partners-grid img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partners-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--white-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-section .container {
        flex-direction: column;
    }
    
    .story-card {
        flex-direction: column;
    }
    
    .story-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--box-shadow);
    }
    
    .navbar ul.show {
        display: flex;
    }
    
    .navbar ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .success-stories {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero {
        height: auto;
        padding: 100px 0;
    }
    
    .quick-stats .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter .container {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
        width: 100%;
    }
}

/* Page Hero */
.page-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 0;
    position: relative;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    top: 20px;
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

/* Service Detail */
.service-detail {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-detail h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail ul li {
    margin-bottom: 10px;
    position: relative;
}

/* Sector Tabs */
.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: #eee;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.tab-text {
    flex: 1;
}

.tab-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-year {
        left: 30px;
        transform: none;
    }
    
    .service-detail {
        flex-direction: column;
    }
    
    .tab-content-inner {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 10px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
}

.regional-offices {
    padding: 60px 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.office-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.office-card p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.office-card i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.map-section {
    padding: 0 0 60px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* FAQ Page */
.faq-search {
    max-width: 600px;
    margin: 0 auto 40px;
}

.faq-search form {
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.faq-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.faq-categories {
    text-align: center;
    margin-bottom: 40px;
}

.faq-categories h3 {
    margin-bottom: 15px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.faq-answer.active {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer ol, .faq-answer ul {
    margin: 15px 0 15px 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

/* Guidelines Page */
.guidelines-tabs {
    margin-bottom: 60px;
}

.step {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.download-box {
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.download-box h3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.download-box h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.document-category {
    margin-bottom: 40px;
}

.document-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.document-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.document-item h4 {
    margin-bottom: 10px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.resource-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.resource-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.resource-card h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Policy Page */
.policy-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.category-card h2 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.category-card h2 i {
    margin-right: 15px;
}

.policy-list {
    display: grid;
    gap: 20px;
}

.policy-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.policy-item:last-child {
    border-bottom: none;
}

.policy-item h3 {
    margin-bottom: 10px;
}

.update-list {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.update-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.update-item .date {
    color: var(--gray-color);
    margin-bottom: 10px;
}

/* Terms Page */
.terms-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.terms-intro {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.terms-section p {
    margin-bottom: 10px;
}

.terms-section ul {
    margin: 15px 0 15px 20px;
}

.terms-section li {
    margin-bottom: 8px;
}

.terms-acceptance {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-style: italic;
}

/* Sitemap Page */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.sitemap-category h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.sitemap-category ul {
    display: grid;
    gap: 12px;
}

.sitemap-category li a {
    display: block;
    padding: 8px 0;
    color: var(--dark-color);
    transition: var(--transition);
}

.sitemap-category li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sitemap-search {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
}

.sitemap-search h3 {
    margin-bottom: 20px;
}

.sitemap-search form {
    display: flex;
}

.sitemap-search input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

.sitemap-search button {
    border-radius: 0 5px 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .document-grid {
        grid-template-columns: 1fr;
    }
    
    .sitemap-search form {
        flex-direction: column;
    }
    
    .sitemap-search input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .sitemap-search button {
        border-radius: 5px;
    }
}