        :root {
            --primary-blue: #162e51;
            --secondary-blue: #162e51;
            --accent-gold: #C99700;
            --light-blue: #E6F0FF;
            --light-gray: #F5F5F5;
            --medium-gray: #E0E0E0;
            --dark-gray: #333333;
            --white: #FFFFFF;
            --alert-red: #B22234;
            --success-green: #228B22;
            --warning-yellow: #FFD700;
            --whatsapp-green: #25D366;
            --telegram-blue: #0088cc;
            --black: #000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            background-color: var(--white);
            font-size: 16px;
        }

        h1, h2, h3, h4 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            padding: 5px;
        }

        .logo-text h1 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 2px;
            font-weight: 700;
        }

        .logo-text p {
            font-size: 0.85rem;
            opacity: 0.9;
            color: var(--light-blue);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        .nav-links a.active {
            color: var(--accent-gold);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--accent-gold);
            bottom: 0;
            left: 0;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            padding: 5rem 0;
            text-align: center;
        }

        .hero h1 {
            color: var(--white);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            opacity: 0.95;
            line-height: 1.8;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            padding: 1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background-color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-lg {
            padding: 1.2rem 3rem;
            font-size: 1.2rem;
        }

        .btn-block {
            display: block;
            width: 100%;
            text-align: center;
        }

        /* Warning Banner */
        .alert-banner {
            background-color: var(--warning-yellow);
            color: #856404;
            padding: 1.2rem;
            margin: 2rem 0;
            border-left: 4px solid var(--accent-gold);
            border-radius: 4px;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .alert-banner i {
            font-size: 1.5rem;
            margin-top: 2px;
        }

        .alert-banner h4 {
            color: #856404;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .alert-banner p {
            margin-bottom: 0;
            font-size: 1rem;
        }

        /* Quick Report Section */
        .quick-report {
            padding: 4rem 0;
            background-color: var(--light-gray);
        }

        .quick-report h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.2rem;
        }

        .payment-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .payment-option {
            background: var(--white);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .payment-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-gold);
        }

        .payment-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--light-blue);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .payment-option:hover .payment-icon {
            background-color: var(--accent-gold);
            color: var(--white);
            transform: scale(1.1);
        }

        .payment-option h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .payment-option p {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        /* Resources Section */
        .resources-section {
            padding: 4rem 0;
            background-color: var(--white);
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .resource-card {
            background: var(--white);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary-blue);
            transition: all 0.3s ease;
        }

        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .resource-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .resource-card h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .resource-card p {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .resource-links {
            list-style: none;
            margin-top: 1rem;
        }

        .resource-links li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--medium-gray);
        }

        .resource-links li:last-child {
            border-bottom: none;
        }

        .resource-links a {
            color: var(--secondary-blue);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .resource-links a:hover {
            color: var(--primary-blue);
            text-decoration: underline;
        }

        .resource-links .file-size {
            color: var(--dark-gray);
            font-size: 0.85rem;
            margin-left: 0.5rem;
        }

        /* Form Section */
        .form-section {
            padding: 4rem 0;
            background-color: var(--white);
            display: none;
        }

        .form-section.active {
            display: block;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .form-header {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 2rem;
        }

        .form-header h2 {
            color: var(--white);
            margin-bottom: 0.5rem;
            font-size: 1.8rem;
        }

        .form-header p {
            opacity: 0.9;
            font-size: 1rem;
        }

        .form-body {
            padding: 2.5rem;
        }

        .form-step {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 1rem;
        }

        .form-control {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
            background-color: var(--white);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
        }

        .form-control.error {
            border-color: var(--alert-red);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .form-hint {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: #666;
        }

        /* Progress Indicator */
        .progress-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 3rem;
            position: relative;
        }

        .progress-indicator::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--medium-gray);
            z-index: 1;
        }

        .progress-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--medium-gray);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .step-circle.active {
            background-color: var(--primary-blue);
        }

        .step-circle.completed {
            background-color: var(--success-green);
        }

        .step-label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        /* Contact Methods */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-method {
            border: 2px solid var(--medium-gray);
            border-radius: 6px;
            padding: 1.2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background-color: var(--white);
        }

        .contact-method:hover {
            border-color: var(--primary-blue);
            background-color: var(--light-blue);
        }

        .contact-method.selected {
            border-color: var(--primary-blue);
            background-color: var(--light-blue);
            box-shadow: 0 2px 8px rgba(0, 51, 102, 0.1);
        }

        .contact-icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
            display: block;
        }

        .whatsapp-icon { color: var(--whatsapp-green); }
        .telegram-icon { color: var(--telegram-blue); }
        .email-icon { color: var(--primary-blue); }
        .phone-icon { color: var(--alert-red); }

        .contact-method span {
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 0.95rem;
        }

        /* Form Navigation */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            padding: 2rem 2.5rem;
            background-color: var(--light-gray);
            border-top: 1px solid var(--medium-gray);
        }

        .btn-secondary {
            background-color: var(--medium-gray);
            color: var(--dark-gray);
        }

        .btn-secondary:hover {
            background-color: #ccc;
            color: var(--dark-gray);
        }

        /* Success Message */
        .success-message {
            text-align: center;
            padding: 3rem 2rem;
            display: none;
        }

        .success-icon {
            font-size: 4rem;
            color: var(--success-green);
            margin-bottom: 1.5rem;
        }

        .success-message h3 {
            color: var(--success-green);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .reference-number {
            background-color: var(--light-blue);
            padding: 1rem 2rem;
            border-radius: 4px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin: 1.5rem 0;
            display: inline-block;
        }

        /* Footer */
        .footer {
            background-color: var(--black);
            color: var(--white);
            padding: 3rem 0 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: var(--light-blue);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            border-radius: 8px;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 1.5rem;
            border-radius: 8px 8px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            color: var(--white);
            margin: 0;
            font-size: 1.4rem;
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .modal-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .modal-body {
            padding: 2rem;
            max-height: 70vh;
            overflow-y: auto;
        }

        /* Official Documents Section */
        .documents-section {
            padding: 4rem 0;
            background-color: var(--light-gray);
        }

        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .document-card {
            background: var(--white);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--accent-gold);
            transition: all 0.3s ease;
        }

        .document-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .document-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }

        .document-card h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .document-links {
            list-style: none;
            margin-top: 1.5rem;
        }

        .document-links li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--medium-gray);
        }

        .document-links li:last-child {
            border-bottom: none;
        }

        .document-links a {
            color: var(--secondary-blue);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s;
        }

        .document-links a:hover {
            color: var(--primary-blue);
            text-decoration: underline;
        }

        /* Statistics Section */
        .stats-section {
            padding: 4rem 0;
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .stats-section h2 {
            color: var(--white);
            text-align: center;
            margin-bottom: 3rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .stat-item h3 {
            color: var(--white);
            font-size: 1.2rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.4rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-blue);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0;
                text-align: center;
                padding: 0.8rem 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 3rem 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .form-body {
                padding: 1.5rem;
            }
            
            .form-navigation {
                padding: 1.5rem;
                flex-direction: column;
                gap: 1rem;
            }
            
            .form-navigation .btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .payment-options {
                grid-template-columns: 1fr;
            }
            
            .contact-methods {
                grid-template-columns: 1fr;
            }
            
            .logo-text h1 {
                font-size: 1.2rem;
            }
            
            .logo-text p {
                font-size: 0.75rem;
            }
        }

        /* Form Validation */
        .error-message {
            color: var(--alert-red);
            font-size: 0.85rem;
            margin-top: 0.5rem;
            display: none;
        }

        .form-control.error + .error-message {
            display: block;
        }

        /* Loading State */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            border-top-color: var(--primary-blue);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .tracking-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.tracking-form {
    max-width: 500px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.status-timeline {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    position: relative;
}

.status-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.status-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.status-step.active .step-circle {
    background-color: var(--accent-gold);
}

.step-label {
    font-size: 0.9rem;
    color: #666;
}

.step-date {
    font-size: 0.8rem;
    color: #999;
}

.case-details table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.case-details th {
    text-align: left;
    padding: 8px 0;
    width: 40%;
    color: #666;
}

.case-details td {
    padding: 8px 0;
    font-weight: 600;
}

.case-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.case-actions .btn {
    flex: 1;
}
