.First {
    padding: 310px;
    background-color: #0B644D;
}

.First h1 {
    font-size: 70px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #ffffff;
    text-align: center;
}

.First p {
    font-size: 20px;
    color: #ffffff;
    text-align: center;
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 

}

@media (max-width: 768px) {
     
    .First {
        padding: 120px;
    }

    .First h1 {
          color: #ffffff;
                  font-size: 40px;

    }

    .First p {
        font-size: 10px;
        color: #ffffff;
    } 

    
}

     .faq-container {
        margin-top: 20px;
            max-width: 900px;
            width: 100%;
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                max-width: 900px;
    width: 100%;
    margin: 0 auto;
         }
        
        
        
        
        
        .faq-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 25px 30px 0;
            background-color: #f8f9fa;
        }
        
        .tab-btn {
            padding: 14px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tab-btn i {
            font-size: 1.2rem;
        }
        
        .customer-btn {
             color: rgb(23, 26, 62);
         }
        
        .vendor-btn {
              color: rgb(23, 26, 62);
         }
        
        .tab-btn:hover {
            transform: translateY(-3px);
        }
        
        .tab-btn.active {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        }
        
        .faq-content {
            padding: 30px;
        }
        
        .faq-section {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .faq-section.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #f79b1b;
        }
        
        .vendor-faq .faq-item {
            border-left-color: #f79b1b;
        }
        
        .faq-question {
            padding: 20px;
            background-color: #f8f9fa;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s;
                font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 

        }
        
        .faq-question:hover {
            background-color: #f1f3f5;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
            color: #3498db;
        }
        
        .vendor-faq .faq-question i {
            color: #2ecc71;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            background-color: white;
            line-height: 1.6;
            color: #555;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
               



        
        .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;
        }
        
        .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;
        }
