.form-section {
            padding: 60px 20px;
            background-color: #f0f2f5;
        
        .section-top-text-1 {
            text-align: center;
            margin-bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .highlight {
            color: var(--secondary-color);
        }

        .mt20 {
            margin-top: 20px;
        }
        /* Contact Form CSS */
        .contact-form-container {
            display: flex;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }
        .sidebar {
            background-color: #fff;
            border-right: 1px solid #e0e0e0;
            padding: 30px;
            width: 35%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            gap: 20px;
            
        }
        .sidebar-header {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin: 0;
        }
        .logo-container {
            border: 1px solid #e0e0e0;
            padding: 10px;
            border-radius: 8px;
            display: inline-block;
        }
        .logo-container img {
            display: block;
            height: 24px;
            width: auto;
        }
        .contact-buttons-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 10px;
        }
        .contact-info-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .phone-details {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-grow: 1;
        }
        .contact-icon {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 8px;
            border-radius: 50%;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .phone-number {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        .show-number-link {
            font-size: 14px;
            color: #ff9900;
            text-decoration: none;
            font-weight: 500;
            white-space: nowrap;
        }
        .contact-button {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            background-color: #fff;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .contact-button:hover {
            background-color: #f9f9f9;
        }
        .contact-button.whatsapp .contact-icon {
            background-color: #25d366;
        }
        .contact-button.email .contact-icon {
            background-color: #e02f2f;
        }
        .contact-button-text {
            font-weight: 600;
            font-size: 14px;
            color: #555;
            text-transform: uppercase;
        }
        .contact-button.whatsapp .contact-button-text {
            color: #25d366;
        }
        .contact-button.email .contact-button-text {
            color: var(--secondary-color);
        }
        .location-container {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: auto;
        }
        .location-icon {
            color: #666;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .location-text {
            font-size: 14px;
            color: #555;
            line-height: 1.4;
        }
        .form-content {
            padding: 30px;
            width: 65%;
            box-sizing: border-box;
        }
        .form-header {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin: 0 0 20px 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group.field-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .form-label {
            font-size: 14px;
            color: #555;
            font-weight: 500;
            display: block;
            margin-bottom: 8px;
        }
        .form-label .required {
            color: #e02f2f;
        }
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            transition: border-color 0.3s, box-shadow 0.3s;
            box-sizing: border-box;
        }
        .form-control:focus {
            outline: none;
            border-color: #ff9900;
            box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
        }
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        .privacy-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
            margin-bottom: 20px;
        }
        .privacy-checkbox input[type="checkbox"] {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border: 2px solid #ccc;
            border-radius: 4px;
            background-color: #fff;
            cursor: pointer;
            position: relative;
        }
        .privacy-checkbox input[type="checkbox"]:checked {
            background-color: #e02f2f;
            border-color: #e02f2f;
        }
        .privacy-checkbox input[type="checkbox"]:checked::after {
            content: '\2713';
            font-size: 12px;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .privacy-checkbox-label {
            font-size: 14px;
            color: #555;
        }
        .submit-button {
            width: 100%;
            padding: 15px;
            background-color: var(--secondary-color);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-button:hover {
            background-color: #c02a2a;
        }
        @media (max-width: 768px) {
            .contact-form-container {
                flex-direction: column;
            }
            .sidebar, .form-content {
                width: 100%;
                border-right: none;
            }
            .sidebar {
                border-bottom: 1px solid #e0e0e0;
            }
            .form-group.field-grid {
                grid-template-columns: 1fr;
            }
        }

        }
        