.tpmenu__area ul li.has-dropdown > a::after {
    content: "\f063";
    font-size: 14px;
    background: #ffffff;
    height: 25px;
    width: 25px;
    line-height: 25px;
    border-radius: 20px;
    color: #404040;
    display: inline-block;
}
.tp-accordion .accordion-item {
    background-color: #f3f7f4 !important;
}

.tp-accordion .accordion-button:not(.collapsed) {
    color: #4260ff !important;
    background-color: #f3f7f4 !important;
}
.tp-accordion .accordion-button:not(.collapsed)::after {
    color: #4260ff !important;
}

.tp-accordion-content p strong {
    color: black;
    background-color: #efefff;
    padding: 6px 20px;
    margin-top: 15px;
    display: inline-block;
    border-radius: 6px;
    font-size: 12px;
}


.tpcontact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tpcontact-form .row {
    margin-bottom: 15px;
}

.tpcontact-form .form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c3e50;
    display: block;
}

.tpcontact-form .required-field::after {
    content: "*";
    color: #e74c3c;
    margin-left: 4px;
}

.tpcontact-form .form-control, 
.tpcontact-form .form-select {
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    width: 100%;
    transition: all 0.3s;
}

.tpcontact-form .form-control:focus, 
.tpcontact-form .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    outline: none;
}

.tpcontact-form .btn {
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.tpcontact-form .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.tpcontact-form .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.tpcontact-form .text-muted {
    color: #7f8c8d !important;
}

.tpcontact-form a {
    color: #3498db;
    text-decoration: none;
}

.tpcontact-form a:hover {
    text-decoration: underline;
}

/* Make the form responsive */
@media (max-width: 768px) {
    .tpcontact-form {
        padding: 20px;
    }
    
    .tpcontact-form .row {
        margin-bottom: 0;
    }
    
    .tpcontact-form .mb-3 {
        margin-bottom: 15px !important;
    }
}