/*
 * Citizen Services Portal - Main Stylesheet
 * Version: 1.1
 * Author: Your Name
 * Description: Defines the look and feel for the entire portal.
 */

/* Universal Box Model and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a4e8e 0%, #2a6abd 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000; /* keeps it above other content */
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    margin-left: 10px;
}

.header-buttons .btn {
    margin-left: 10px;
}

/* Navigation */
/* nav {
    padding: 15px 0;
} */

.nav-menu {
    display: flex;
    list-style: none;
    /* Updated to align links to the start and control spacing */
    justify-content: flex-start;
    gap: 20px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
 /* About Hero Section */
        .index-hero {
            background: linear-gradient(rgba(26, 78, 142, 0.8), rgba(26, 78, 142, 0.8)), url('https://images.unsplash.com/photo-1508780709619-79562169bc64?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .index-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .index-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }



/* Buttons */
.btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color: #f1c40f;
    color: #1a4e8e;
}

.btn-primary:hover {
    background-color: #f39c12;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1a4e8e;
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a4e8e;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #f1c40f;
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon i {
    font-size: 60px;
    color: white;
    opacity: 0.8;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a4e8e;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: #555;
}

.service-link-full {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Service icon backgrounds */
.bg-rta { background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); }
.bg-ghmc { background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); }
.bg-police { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); }
.bg-registration { background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%); }
.bg-revenue { background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%); }
.bg-labour { background: linear-gradient(135deg, #e67e22 0%, #d35400 100%); }

/* Login Section */
.login-section {
    background-color: #f5f7fa;
    padding: 80px 0;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.login-intro {
    background: linear-gradient(135deg, #1a4e8e 0%, #2a6abd 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.login-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.login-intro p {
    font-size: 16px;
    margin-bottom: 10px;
}

.login-form h2 {
    font-size: 28px;
    color: #1a4e8e;
    margin-bottom: 25px;
    text-align: center;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #2a6abd;
}

/* Footer Styles */
footer {
    background: #1a4e8e;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #f1c40f;
    border-radius: 2px;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-column ul li i {
    margin-right: 10px;
    color: #f1c40f;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #ccc;
}
/* Utility Classes */
.mb-20 {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    .header-buttons {
        margin-top: 10px;
    }
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .login-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
 /* Announcements Section */
    .announcements {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .announcements-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .announcement-card {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }
    
    .announcement-card:hover {
        transform: translateY(-5px);
    }
    
    .announcement-date {
        font-size: 14px;
        color: #1a4e8e;
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .announcement-card h3 {
        font-size: 20px;
        color: #1a4e8e;
        margin-bottom: 15px;
    }
    
    .announcement-card p {
        color: #555;
        margin-bottom: 20px;
    }
    
    .read-more {
        color: #f1c40f;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .read-more:hover {
        text-decoration: underline;
    }
    
    /* Statistics Section */
    .statistics {
        padding: 80px 0;
        background: linear-gradient(135deg, #1a4e8e 0%, #2a6abd 100%);
        color: white;
        text-align: center;
    }
    
    .statistics .section-title {
        color: white;
    }
    
    .statistics .section-title::after {
        background-color: #f1c40f;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 30px 20px;
        backdrop-filter: blur(10px);
    }
    
    .stat-icon {
        font-size: 40px;
        margin-bottom: 15px;
        color: #f1c40f;
    }
    
    .stat-number {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 16px;
        opacity: 0.9;
    }
    
    /* Quick Access Section */
    .quick-access {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .quick-access-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .quick-access-item {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        text-decoration: none;
        color: #333;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .quick-access-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        color: #1a4e8e;
    }
    
    .quick-access-icon {
        width: 70px;
        height: 70px;
        background: #1a4e8e;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 20px;
        font-size: 30px;
        color: white;
    }
    
    .quick-access-item h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #1a4e8e;
    }
    
    .quick-access-item p {
        color: #555;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .announcements-grid,
        .stats-grid,
        .quick-access-grid {
            grid-template-columns: 1fr;
        }
        
        .stat-number {
            font-size: 32px;
        }
    }
    /*
 * Citizen Services Portal - Main Stylesheet
 * Version: 1.1
 * Author: Your Name
 * Description: Defines the look and feel for the entire portal.
 */

/* Universal Box Model and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

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


/* Hero Section */
.hero {
    background: url('image_3dfd11.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 78, 142, 0.7);
    z-index: -1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color: #f1c40f;
    color: #1a4e8e;
}

.btn-primary:hover {
    background-color: #f39c12;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1a4e8e;
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a4e8e;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #f1c40f;
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon i {
    font-size: 60px;
    color: white;
    opacity: 0.8;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a4e8e;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: #555;
}

.service-link-full {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Service icon backgrounds */
.bg-rta { background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); }
.bg-ghmc { background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); }
.bg-police { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); }
.bg-registration { background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%); }
.bg-revenue { background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%); }
.bg-twallet { background: linear-gradient(135deg, #e67e22 0%, #d35400 100%); }
.bg-hmwssb { background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); }
.bg-endowment { background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%); }
.bg-payments { background: linear-gradient(135deg, #27ae60 0%, #229954 100%); }
.bg-agriculture { background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%); }
.bg-cdma { background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%); }
.bg-labour { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); }

/* Service-specific page styles */
main.services-page {
    padding: 80px 0;
}

.service-header {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 40px;
}

.service-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a4e8e;
    margin-bottom: 10px;
}

.service-header p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.services-list-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: 0.5fr 1fr 3fr;
    gap: 15px;
    padding: 15px;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.table-header {
    background: #1a4e8e;
    color: white;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

.table-row:nth-child(even) {
    background: #f8f9fa;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 10px 0;
    word-wrap: break-word;
}

.service-link {
    color: #2a6abd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1a4e8e;
}

.back-button-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Login Section */
.login-section {
    background-color: #f5f7fa;
    padding: 80px 0;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.login-intro {
    background: linear-gradient(135deg, #1a4e8e 0%, #2a6abd 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.login-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.login-intro p {
    font-size: 16px;
    margin-bottom: 10px;
}

.login-form h2 {
    font-size: 28px;
    color: #1a4e8e;
    margin-bottom: 25px;
    text-align: center;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #2a6abd;
}

/* Footer Styles */
footer {
    background: #1a4e8e;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #f1c40f;
    border-radius: 2px;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-column ul li i {
    margin-right: 10px;
    color: #f1c40f;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #ccc;
}
/* Utility Classes */
.mb-20 {
    margin-bottom: 20px;
}



        /* Buttons */
        .btn {
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background-color: #f1c40f;
            color: #1a4e8e;
        }

        .btn-primary:hover {
            background-color: #f39c12;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #1a4e8e;
        }

        /* Section Title */
        .section-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #1a4e8e;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: #f1c40f;
            border-radius: 2px;
        }

        /* About Hero Section */
        .about-hero {
            background: linear-gradient(rgba(26, 78, 142, 0.8), rgba(26, 78, 142, 0.8)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .about-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Mission Section */
        .mission {
            padding: 80px 0;
            background-color: #fff;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .mission-content h2 {
            font-size: 36px;
            color: #1a4e8e;
            margin-bottom: 20px;
        }

        .mission-content p {
            font-size: 16px;
            color: #555;
            margin-bottom: 25px;
        }

        .mission-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Values Section */
        .values {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1a4e8e 0%, #2a6abd 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }

        .value-card h3 {
            font-size: 22px;
            color: #1a4e8e;
            margin-bottom: 15px;
        }

        .value-card p {
            color: #555;
        }

        /* Timeline Section */
        .timeline {
            padding: 80px 0;
            background-color: #fff;
        }

        .timeline-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-container::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: #1a4e8e;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .timeline-content h3 {
            color: #1a4e8e;
            margin-bottom: 10px;
        }

        .timeline-date {
            font-weight: 600;
            color: #f1c40f;
            margin-bottom: 10px;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: #f1c40f;
            border: 4px solid #1a4e8e;
            border-radius: 50%;
            top: 20px;
            right: -10px;
            z-index: 1;
        }

        .timeline-item:nth-child(even)::after {
            left: -10px;
        }

        /* Team Section */
        .team {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-member {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .team-img {
            height: 250px;
            overflow: hidden;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-member:hover .team-img img {
            transform: scale(1.1);
        }

        .team-info {
            padding: 20px;
        }

        .team-info h3 {
            color: #1a4e8e;
            margin-bottom: 5px;
        }

        .team-info p {
            color: #555;
            margin-bottom: 15px;
        }

        /* Footer Styles */
        footer {
            background: #1a4e8e;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #f1c40f;
            border-radius: 2px;
        }

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

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

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #fff;
        }

        .footer-column ul li i {
            margin-right: 10px;
            color: #f1c40f;
        }

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

       
      
        /* Buttons */
        .btn {
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background-color: #f1c40f;
            color: #1a4e8e;
        }

        .btn-primary:hover {
            background-color: #f39c12;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #1a4e8e;
        }

        /* Section Title */
        .section-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #1a4e8e;
            position: relative;
            margin-top: 40px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: #f1c40f;
            border-radius: 2px;
        }

        /* Contact Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(26, 78, 142, 0.8), rgba(26, 78, 142, 0.8)), url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .contact-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Contact Options Section */
        .contact-options {
            padding: 80px 0;
            background-color: #fff;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .option-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .option-card:hover {
            transform: translateY(-5px);
        }

        .option-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1a4e8e 0%, #2a6abd 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }

        .option-card h3 {
            font-size: 22px;
            color: #1a4e8e;
            margin-bottom: 15px;
        }

        .option-card p {
            color: #555;
            margin-bottom: 20px;
        }

        .option-card a {
            color: #f1c40f;
            text-decoration: none;
            font-weight: 600;
        }

        .option-card a:hover {
            text-decoration: underline;
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .form-container {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .form-title {
            font-size: 28px;
            color: #1a4e8e;
            text-align: center;
            margin-bottom: 30px;
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a4e8e;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            outline: none;
            border-color: #2a6abd;
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background: #f8f9fa;
            padding: 20px;
            font-size: 18px;
            font-weight: 600;
            color: #1a4e8e;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }

        /* Office Locations Section */
        .office-locations {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .location-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .location-header {
            background: linear-gradient(135deg, #1a4e8e 0%, #2a6abd 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .location-body {
            padding: 20px;
        }

        .location-detail {
            display: flex;
            margin-bottom: 15px;
        }

        .location-icon {
            width: 40px;
            color: #1a4e8e;
            font-size: 20px;
        }

        .location-info {
            flex: 1;
        }

        /* Footer Styles */
        footer {
            background: #1a4e8e;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #f1c40f;
            border-radius: 2px;
        }

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

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

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #fff;
        }

        .footer-column ul li i {
            margin-right: 10px;
            color: #f1c40f;
        }

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

   
        /* Buttons */
        .btn {
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background-color: #f1c40f;
            color: #1a4e8e;
        }

        .btn-primary:hover {
            background-color: #f39c12;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #1a4e8e;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 0;
        }

        /* Login Section */
        .login-section {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }

        .login-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .login-info {
            background: linear-gradient(135deg, #1a4e8e 0%, #2a6abd 100%);
            color: white;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-info h2 {
            font-size: 32px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .login-info ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .login-info ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .login-info ul li i {
            margin-right: 15px;
            font-size: 20px;
            color: #f1c40f;
        }

        .login-form {
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-form h2 {
            font-size: 32px;
            color: #1a4e8e;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a4e8e;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #2a6abd;
            box-shadow: 0 0 0 2px rgba(42, 106, 189, 0.2);
        }

        .remember-forgot {
            /* display: flex; */
            /* justify-content: space-between; */
            align-items: center;
            margin-bottom: 25px;
        }

        .remember-me {
            display: flex;
            align-items: center;
        }

        .remember-me input {
            margin-right: 8px;
        }

        .forgot-password {
            color: #1a4e8e;
            text-decoration: none;
            font-weight: 500;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .login-button {
            background-color: #f1c40f;
            color: #1a4e8e;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
            margin-bottom: 20px;
        }

        .login-button:hover {
            background-color: #f39c12;
        }

        .divider {
            text-align: center;
            margin: 25px 0;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #ddd;
            z-index: 1;
        }

        .divider span {
            background: #fff;
            padding: 0 15px;
            position: relative;
            z-index: 2;
            color: #777;
        }

        .social-login {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .social-btn:hover {
            transform: translateY(-3px);
        }

        .facebook {
            background: #3b5998;
        }

        .google {
            background: #db4437;
        }

        .twitter {
            background: #1da1f2;
        }

        .register-link {
            text-align: center;
            margin-top: 20px;
            color: #555;
        }

        .register-link a {
            color: #1a4e8e;
            text-decoration: none;
            font-weight: 600;
        }

        .register-link a:hover {
            text-decoration: underline;
        }

        /* Footer Styles */
        footer {
            background: #1a4e8e;
            color: white;
            padding: 30px 0 15px;
            margin-top: auto;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #f1c40f;
            border-radius: 2px;
        }

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

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

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #fff;
        }

        .footer-column ul li i {
            margin-right: 10px;
            color: #f1c40f;
        }

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

        /* Responsive Design */
        @media (max-width: 900px) {
            .login-container {
                grid-template-columns: 1fr;
            }
            
            .login-info {
                display: none;
            }
        }



        /* Buttons */
        .btn {
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background-color: #f1c40f;
            color: #1a4e8e;
        }

        .btn-primary:hover {
            background-color: #f39c12;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #1a4e8e;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 0;
        }

        /* Registration Section */
        .register-section {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }

        .register-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .register-info {
            background: linear-gradient(135deg, #1a4e8e 0%, #2a6abd 100%);
            color: white;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .register-info h2 {
            font-size: 32px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .register-info ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .register-info ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .register-info ul li i {
            margin-right: 15px;
            font-size: 20px;
            color: #f1c40f;
        }

        .register-form {
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .register-form h2 {
            font-size: 32px;
            color: #1a4e8e;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a4e8e;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #2a6abd;
            box-shadow: 0 0 0 2px rgba(42, 106, 189, 0.2);
        }

        .form-row {
            display: flex;
            gap: 15px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .terms {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .terms input {
            margin-top: 5px;
            margin-right: 10px;
        }

        .terms label {
            font-size: 14px;
            color: #555;
        }

        .terms a {
            color: #1a4e8e;
            text-decoration: none;
            font-weight: 500;
        }

        .terms a:hover {
            text-decoration: underline;
        }

        .register-button {
            background-color: #f1c40f;
            color: #1a4e8e;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
            margin-bottom: 20px;
        }

        .register-button:hover {
            background-color: #f39c12;
        }

        .login-link {
            text-align: center;
            margin-top: 20px;
            color: #555;
        }

        .login-link a {
            color: #1a4e8e;
            text-decoration: none;
            font-weight: 600;
        }

        .login-link a:hover {
            text-decoration: underline;
        }

        .password-strength {
            margin-top: 5px;
            height: 5px;
            background: #eee;
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }

        .password-strength::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0%;
            background: #e74c3c;
            transition: width 0.3s ease, background 0.3s ease;
            border-radius: 3px;
        }

        .password-strength.weak::before {
            width: 33%;
            background: #e74c3c;
        }

        .password-strength.medium::before {
            width: 66%;
            background: #f39c12;
        }

        .password-strength.strong::before {
            width: 100%;
            background: #2ecc71;
        }

        .password-feedback {
            font-size: 12px;
            margin-top: 5px;
            color: #777;
        }

        /* Footer Styles */
        footer {
            background: #1a4e8e;
            color: white;
            padding: 30px 0 15px;
            margin-top: auto;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #f1c40f;
            border-radius: 2px;
        }

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

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

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #fff;
        }

        .footer-column ul li i {
            margin-right: 10px;
            color: #f1c40f;
        }

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


       /* Policy Hero Section */
        .policy-hero {
            background: linear-gradient(rgba(26, 78, 142, 0.9), rgba(26, 78, 142, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }

        .policy-hero h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .policy-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Policy Navigation */
        .policy-nav {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .policy-nav-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .policy-nav-item {
            padding: 10px 20px;
            border-radius: 50px;
            background: #f5f7fa;
            color: #1a4e8e;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .policy-nav-item:hover, .policy-nav-item.active {
            background: #1a4e8e;
            color: white;
        }

        /* Policy Content */
        .policy-content {
            padding: 60px 0;
        }

        .policy-section {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .policy-header {
            margin-bottom: 30px;
        }

        .policy-title {
            font-size: 32px;
            color: #1a4e8e;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
        }

        .policy-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #f1c40f;
            border-radius: 2px;
        }

        .last-updated {
            color: #777;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .policy-article {
            margin-bottom: 30px;
        }

        .article-title {
            font-size: 22px;
            color: #1a4e8e;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .policy-text {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.8;
        }

        .policy-list {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .policy-list li {
            margin-bottom: 10px;
            color: #555;
        }

        .policy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .policy-table th, .policy-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #f1f5fd;
        }

        .policy-table th {
            background: #f8f9fa;
            color: #1a4e8e;
            font-weight: 600;
        }

        .policy-table tr:hover {
            background: #f8f9fa;
        }

        .contact-info {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-top: 30px;
        }

        .contact-title {
            font-size: 18px;
            color: #1a4e8e;
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* Footer Styles */
        footer {
            background: #1a4e8e;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #f1c40f;
            border-radius: 2px;
        }

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

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

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #fff;
        }

        .footer-column ul li i {
            margin-right: 10px;
            color: #f1c40f;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }
            .header-buttons {
                margin-top: 10px;
            }
            .nav-menu {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .policy-nav-container {
                flex-direction: column;
                align-items: center;
            }
            .policy-section {
                padding: 25px;
            }
            .policy-title {
                font-size: 28px;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }