   :root {  
            --accent-color: #01497c;
            --light-bg: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f0f4f8;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        .nav-link {
            color: #555;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .page-header {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            border-radius: 0 0 20px 20px;
            padding: 4rem 0;
            margin-bottom: 3rem;
        }
        
        .section {
            margin-bottom: 5rem;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .mission-card {
            background-color: var(--light-bg);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .timeline {
            position: relative;
            padding: 0;
            list-style: none;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--secondary-color);
            left: 50%;
            margin-left: -1px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }
        
        .timeline-item:after {
            content: '';
            display: table;
            clear: both;
        }
        
        .timeline-badge {
            width: 30px;
            height: 30px;
            position: absolute;
            top: 0;
            left: 50%;
            margin-left: -15px;
            background-color: var(--primary-color);
            border: 4px solid white;
            border-radius: 50%;
            z-index: 100;
        }
        
        .timeline-panel {
            width: 45%;
            float: left;
            padding: 20px;
            position: relative;
            border-radius: 10px;
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .timeline-panel:before {
            content: " ";
            display: inline-block;
            position: absolute;
            top: 26px;
            right: -15px;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 15px solid white;
            z-index: 1;
        }
        
        .timeline-item:nth-child(even) .timeline-panel {
            float: right;
        }
        
        .timeline-item:nth-child(even) .timeline-panel:before {
            border-left-width: 0;
            border-right-width: 15px;
            left: -15px;
            right: auto;
        }
        
        .stats-item {
            text-align: center;
            padding: 2rem;
        }
        
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .contact-card {
            background-color: var(--light-bg);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .social-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
            transition: color 0.3s;
        }
        
        .social-icon:hover {
            color: var(--accent-color);
        }
        
        .footer {
            background-color: var(--light-bg);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        
        @media (max-width: 767px) {
            .timeline:before {
                left: 40px;
            }
            
            .timeline-badge {
                left: 40px;
            }
            
            .timeline-panel {
                width: calc(100% - 90px);
                float: right;
            }
            
            .timeline-panel:before {
                border-left-width: 0;
                border-right-width: 15px;
                left: -15px;
                right: auto;
            }
        }
		
		 .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .contact-form-card {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            padding: 2rem;
        }
        
        .contact-info-card {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            padding: 2rem;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #444;
        }
        
        .form-control {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 0.75rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(44, 125, 160, 0.25);
        }
    
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(44, 125, 160, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .contact-text {
            color: #666;
            margin-bottom: 0;
        }
        
        .map-container {
            height: 300px;
            background-color: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 1.5rem;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f4f8;
            color: #6c757d;
            font-weight: 500;
        }
        
        .support-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .support-card {
            background: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }
        
        .support-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .support-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .support-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .support-desc {
            color: #666;
            margin-bottom: 1rem;
        }
        
        .faq-section {
            background: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            padding: 2rem;
            margin-top: 3rem;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1.5rem;
        }
        
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .faq-question {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--accent-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            color: #555;
            display: none;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        .footer {
            background-color: var(--light-bg);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 1px solid #eaeaea;
        }
        
        @media (max-width: 767px) {
            .contact-container {
                flex-direction: column;
            }
            
            .support-options {
                grid-template-columns: 1fr;
            }
        }
		.policy-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            padding: 3rem;
            margin-bottom: 3rem;
        }
        
        .policy-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .policy-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .policy-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .policy-section {
            margin-bottom: 2.5rem;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .policy-list {
            padding-left: 1.5rem;
        }
        
        .policy-list li {
            margin-bottom: 0.75rem;
        }
        
        .update-info {
            background-color: var(--light-bg);
            border-left: 4px solid var(--primary-color);
            padding: 1rem;
            margin: 2rem 0;
        }
        
        .contact-card {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        .footer {
            background-color: var(--light-bg);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 1px solid #eaeaea;
        }
        
        .toc {
            position: sticky;
            top: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .toc-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .toc-list {
            list-style: none;
            padding-left: 0;
        }
        
        .toc-list li {
            margin-bottom: 0.5rem;
        }
        
        .toc-list a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .toc-list a:hover {
            color: var(--primary-color);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .back-to-top.show {
            opacity: 1;
        }
        
        @media (max-width: 767px) {
            .policy-container {
                padding: 1.5rem;
            }
            
            .toc {
                position: static;
            }
        }
		
        
        .terms-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            padding: 3rem;
            margin-bottom: 3rem;
        }
        
        .terms-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .terms-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .terms-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .terms-section {
            margin-bottom: 2.5rem;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .terms-list {
            padding-left: 1.5rem;
        }
        
        .terms-list li {
            margin-bottom: 0.75rem;
        }
        
        .update-info {
            background-color: var(--light-bg);
            border-left: 4px solid var(--primary-color);
            padding: 1rem;
            margin: 2rem 0;
        }
        
        .contact-card {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        .footer {
            background-color: var(--light-bg);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 1px solid #eaeaea;
        }
        
        .toc {
            position: sticky;
            top: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .toc-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .toc-list {
            list-style: none;
            padding-left: 0;
        }
        
        .toc-list li {
            margin-bottom: 0.5rem;
        }
        
        .toc-list a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .toc-list a:hover {
            color: var(--primary-color);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .back-to-top.show {
            opacity: 1;
        }
        
        .acceptance-box {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: center;
        }
        
        .highlight {
            background-color: rgba(44, 125, 160, 0.1);
            padding: 0.5rem;
            border-radius: 5px;
            font-weight: 500;
        }
        
        @media (max-width: 767px) {
            .terms-container {
                padding: 1.5rem;
            }
            
            .toc {
                position: static;
            }
        }