.breadcrumb {
    display: none;
}
#simplepagetitle {
    display: none;
}

.container {
    max-width: 920px;
    margin: auto;
    padding: 60px 0 120px;
}

.contact-title {
    font-size: 36px;
    padding-bottom: 60px !important;
    text-align: center;
    position: relative;
    overflow: visible;
}

.contact-title::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: #c9c9c9;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

#contactForm {  
    margin-top: 60px;
    padding: 60px 50px 45px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.form-item {
    width: 100%;
}

label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.input-wrapper {
    margin-top: 17px;
    width: 100%;
    display: flex;
}

input[type="text"],
input[type="email"],
input[type="tel"],
.input-wrapper select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    appearance: auto;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    margin-right: 10px;
}

.input-wrapper--name {
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.input-wrapper--name input {
    width: 45%;
    flex-grow: 1;
}

.required {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
    background-color: #CF142B;
    padding: 5px 16px;
}

.privacy-policy-link {
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
}

.privacy-policy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: #ccc;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 999px;
    cursor: not-allowed !important;
    pointer-events: none !important;
    width: 100%;
}
.submit-btn.active {
    background-color: #CF142B;
    cursor: pointer !important;
    pointer-events: initial !important;
}
.submit-btn:disabled {
    background-color: #ccc;
}

p {
    font-size: 14px;
    color: #666;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}