.contact-section {
    margin-bottom: 40px;
}

.contact-phone__inner {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px auto;
    padding: 20px 0;
    border-radius: 10px;
    background-color: var(--bg-color-2);
}

.contact-phone__label {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 12px;
}

.contact-phone__body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-phone svg {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 4px;
    background-color: var(--primary-color);
    vertical-align: middle;
}

.contact-phone a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.contact-phone__hours {
    font-size: 1.2rem;
    color: var(--text-color);
}

.form-content {
    width: 60%;
    margin: 0 auto;
    border-radius: 10px;
    background-color: var(--bg-color-2);
    padding: 40px;
    border-top: none;
}

.form-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 32px;
}

.form-label {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 12px;
    text-align: justify;
    word-break: break-word;
}

.form-note {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: bold;
    opacity: 0.8;
    text-align: justify;
    word-break: break-word;
}

.form-radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    text-align: justify;
    word-break: break-word;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 20px;
    font-size: 1.5rem;
    color: var(--text-color);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.privacy-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}


.privacy-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-color);
}

.privacy-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-submit {
    text-align: center;
    margin: 40px 0 20px 0;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    width: 60%;
    padding: 12px 0;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50px
}

.wpcf7-response-output,
.wpcf7-spinner {
    display: none;
}

@media (max-width: 768px) {

    .contact-phone__inner,
    .form-content {
        width: 90%;
        padding: 20px;
    }

    .cf7-success-content {
        width: 90%;
    }

    .contact-phone__body {
        flex-direction: column;
        gap: 8px;
    }

    .privacy-text {
        line-height: 1.6;
    }

    .form-submit input {
        width: 100%;
        padding: 10px 0;
    }
}