.contact-section {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact-info {
    border-right: 2px solid #f0f0f0;
    padding-right: 20px;
}

.contact-info h5 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info svg {
    width: 24px;
    height: 24px;
    fill: #007bff;
    margin-left: 10px;
    vertical-align: middle;
}

.form-control {
    border-radius: 10px;
}

.btn-primary {
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #1c1c84;
    border: none;
    color: white;
}

.separator {
    border-bottom: 1px solid #f0f0f0;
    margin: 25px 0;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.captcha-input {
    border-radius: 10px;
    padding: 10px;
    flex-grow: 1;
    text-align: center;
    font-size: 18px;
    margin-right: 10px;
}

.captcha-image {
    border-radius: 10px;
    width: 150px;
    height: 50px;
    object-fit: cover;
}

.captcha-link {
    display: block;
    color: #007bff;
    margin-top: 5px;
    text-align: center;
    text-decoration: none;
}

.captcha-link:hover {
    text-decoration: underline;
}

.form-label {
    font-size: 16px;
    font-weight: bold;
}

.btn-submit {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 12px;
    background-color: #01c1c1;
    border: none;
    color: white;
    font-size: 18px;
    text-align: center;
}

.btn-submit:hover {
    background-color: #009b9b;
}

.section-header {
    margin-bottom: 40px;
}