.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 20px;
}

.contact-info-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-info-content p {
    color: var(--primary-gray);
    margin-bottom: 0;
}

.contact-form .form-control {
    height: 50px;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: white;
    color: black;
}

.contact-form .form-control::placeholder {
    color: black;
}

.contact-form textarea.form-control {
    height: 150px;
}

.contact-form .btn {
    padding: 12px 30px;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    font-weight: 600;
}

.contact-form .btn:hover {
    background-color: black;
    color: var(--white-color);
}
