.contact-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: auto;
    gap: 16px;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 16px;
}

.form-row{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: auto;
    gap: 6px;
}

.contact-form .required {
    color: #c00;
    font-size: 13px;
    margin-left: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form .wpcf7 input[type="tel"],
.contact-form textarea{
    width: 311px;
    height: 40px;
    padding: 8px;
    font-size: 14px;
    border: none;
    background-color: #fff;
    border-radius: 8px;
}

.contact-form textarea{
    height: 160px;
    resize: none;
}

.contact-form-submit{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-form-submit input[type="submit"]{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 50px;
    margin-top: 30px;
    background-color: #100169;
    color: #f2f2f2;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.contact-form-submit input[type="submit"]:hover{
    background-color: #7a67e6;
    color: #f2f2f2;
    cursor: pointer;
}

.contact-form .wpcf7 .wpcf7-not-valid-tip {
    color: #c00;
    font-size: 13px;
    margin-top: 6px;
}

.contact-form .wpcf7 .wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form .wpcf7-mail-sent-ok {
    border-color: #2e8b57;
    color: #2e8b57;
}

.contact-form .wpcf7-validation-errors {
    border-color: #c00;
    color: #c00;
}

.privacy-policy-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 311px;
    font-size: 14px;
    color: #737373;
    line-height: 1.6;
    margin-top: 20px;
}

.privacy-policy-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 16px;
    background: #fff;
    padding: 12px;
}

.privacy-policy-item {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: auto;
    color: #242424;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-policy-item h3{
    font-weight: bold;
}