   :root {
            --primary-color: #2c5aa0;
            --secondary-color: #f0f5ff;
            --accent-color: #ff9800;
            --border-color: #ddd;
            --text-color: #333;
            --success-color: #4caf50;
            --error-color: #f44336;
            --rear-green: #2d5016;
            --rear-gold: #d4af37;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9f9f9;
            color: #333;
        }

        /* Header Styles */
        .top-header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .header-title {
            margin-left: 15px;
        }

        .header-title h1 {
            color: var(--rear-green);
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 0;
            line-height: 1.2;
        }

        .header-title h2 {
            color: var(--rear-green);
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 0;
            line-height: 1;
        }

        .header-title p {
            color: var(--rear-gold);
            font-size: 14px;
            margin-top: 5px;
            margin-bottom: 0;
        }

        .social-lang {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
        }

        .social-icons a {
            color: var(--rear-green);
            font-size: 18px;
            margin-left: 12px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--rear-gold);
        }

        .language-select {
            border: 2px solid var(--rear-green);
            border-radius: 5px;
            background: white;
            color: var(--rear-green);
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            padding: 5px 10px;
        }

        /* Navigation Styles */
        .navbar {
            background: var(--rear-green);
            padding: 0;
        }

        .navbar-nav .nav-link {
            color: white;
            padding: 15px 20px;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            background: #3a6720;
        }

        .dropdown-menu {
            background: white;
            border: none;
            border-radius: 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 0;
        }

        .dropdown-item {
            color: var(--rear-green);
            padding: 12px 20px;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background: #f8f9fa;
            color: var(--rear-green);
            padding-left: 25px;
        }

        .navbar-toggler {
            border: 1px solid rgba(255,255,255,0.5);
            padding: 5px 10px;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(45, 80, 22, 0.8), rgba(45, 80, 22, 0.9)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn-hero {
            background: var(--rear-gold) !important;
            color: var(--rear-green) !important;
            font-weight: bold !important;
            padding: 12px 30px !important;
            border-radius: 30px !important;
            border: none !important;
            transition: all 0.3s !important;
        }

        .btn-hero:hover {
            background: #e6c12e !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
        }

        /* Form Styles */
        .form-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            overflow: hidden;
            margin: 50px auto;
        }

        .form-header {
            background: var(--primary-color);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .form-header h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .form-header p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 0;
        }

        .form-section {
            padding: 25px;
            border-bottom: 1px solid var(--border-color);
        }

        .form-section:last-of-type {
            border-bottom: none;
        }

        .section-title {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            font-size: 18px;
            font-weight: 600;
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
        }

        .required::after {
            content: " *";
            color: var(--error-color);
        }

        .form-control, .form-select {
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 10px 15px;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
        }

        .company-type-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin-top: 5px;
        }

        .company-type-option {
            display: flex;
            align-items: center;
        }

        .form-check-input {
            margin-right: 8px;
        }

        .checkbox-group {
            margin-bottom: 15px;
        }

        .checkbox-group label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            font-weight: normal;
        }

        .checkbox-group .form-check-input {
            margin-top: 3px;
        }

        .otp-verification {
            display: flex;
            gap: 10px;
            margin-top: 5px;
        }

        .otp-verification .form-control {
            flex: 1;
        }

        .otp-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            white-space: nowrap;
            transition: background-color 0.3s;
        }

        .otp-btn:hover {
            background-color: #e68900;
        }

        .reference-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .reference-table th,
        .reference-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .reference-table th {
            background-color: var(--secondary-color);
            font-weight: 600;
        }

        .terms-container {
            background-color: var(--secondary-color);
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 15px;
            max-height: 200px;
            overflow-y: auto;
        }

        .terms-container p {
            margin-bottom: 10px;
        }

        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            display: block;
            margin: 20px auto 0;
        }

        .submit-btn:hover {
            background-color: #1e3d6f;
        }

        /* Footer */
        .footer {
            background: var(--rear-green);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }

        .footer h5 {
            color: var(--rear-gold);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--rear-gold);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .header-title h1 {
                font-size: 20px;
            }

            .header-title h2 {
                font-size: 26px;
            }

            .header-title p {
                font-size: 12px;
            }

            .logo {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 768px) {
            .social-lang {
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
                margin-top: 15px;
            }

            .hero-section {
                padding: 60px 0;
            }

            .hero-section h1 {
                font-size: 32px;
            }

            .company-type-options {
                grid-template-columns: 1fr;
            }

            .reference-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 576px) {
            .header-title h1 {
                font-size: 18px;
            }

            .header-title h2 {
                font-size: 22px;
            }

            .header-title p {
                font-size: 11px;
            }

            .logo {
                width: 50px;
                height: 50px;
            }

            .social-icons a {
                font-size: 16px;
                margin-left: 8px;
            }

            .hero-section {
                padding: 40px 0;
            }

            .hero-section h1 {
                font-size: 26px;
            }

            .hero-section p {
                font-size: 16px;
            }

            .form-section {
                padding: 20px 15px;
            }
        }