
        
        .contact-info {
            margin-top: 10px;
            font-weight: 600;
            color: #3498db;
        }
        
        @media (max-width: 768px) {
          
            
            .faq-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .tab-btn {
                width: 100%;
                justify-content: center;
            }
            
            .faq-content {
                padding: 20px;
            }
        }

        .contact-section {
            width: 100%;
            max-width: 1600px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 100, 0, 0.1);
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background: #0B644D;
            color: white;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
                font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 

        }
        
        .contact-info h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .contact-info p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .contact-details {
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 50px 40px;
        }
        
        .form-title {
            color: #1e7a1e;
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
                font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 

        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e1e1;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #0B644D;
            outline: none;
            box-shadow: 0 0 0 3px rgba(45, 182, 45, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: #0B644D;
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
            letter-spacing: 1px;
        }
        
        .submit-btn:hover {
            background-color: #1e7a1e;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(45, 182, 45, 0.3);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        .form-footer {
            text-align: center;
            margin-top: 25px;
            color: #666;
            font-size: 0.9rem;
        }
        
        .form-footer a {
            color: #2db62d;
            text-decoration: none;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
            }
            
            .contact-info, .contact-form {
                padding: 40px 30px;
            }
            
            .contact-info h1 {
                font-size: 2.2rem;
            }
        }
        
        .success-message {
            display: none;
            background-color: #e8f7e8;
            border-left: 5px solid #2db62d;
            padding: 20px;
            margin-top: 20px;
            border-radius: 5px;
            color: #1e7a1e;
        }
        
        .success-message i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
