body,
.form-control {
    font-family: 'Lato', sans-serif;
    color: #fff;
}

h1 {
    margin-bottom: 40px;
}

label {
    color: #fff;
}

.btn-send {
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: #765A20;
}


.help-block.with-errors {
    color: #765A20;
    margin-top: 5px;
}

.messages {
    margin-top: 20px;
}

.contact-feedback {
    position: relative;
    border: 1px solid #9d8e59;
    border-radius: 8px;
    padding: 20px 48px 18px 20px;
    background: linear-gradient(135deg, #5a5350 0%, #6a665e 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.contact-feedback .close {
    position: absolute;
    right: 14px;
    top: 10px;
    color: #f7f4ef;
    opacity: 0.9;
    text-shadow: none;
    font-size: 22px;
}

.contact-feedback .close:hover {
    color: #ffffff;
    opacity: 1;
}

.contact-feedback-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #f7f4ef;
    font-family: 'Baskervville', serif;
}

.contact-feedback-text {
    margin: 0;
    color: #f0ebe5;
    line-height: 1.6;
}

.contact-feedback.is-success {
    border-color: #9d8e59;
}

.contact-feedback.is-error {
    border-color: #c06d5b;
    background: linear-gradient(135deg, #5f3d38 0%, #714740 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-feedback {
        padding: 18px 40px 16px 18px;
    }

    .contact-feedback .close {
        font-size: 20px;
    }

    .contact-feedback-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    body,
    .form-control {
        font-size: 16px;
    }

    h1 {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .form-control {
        min-height: 44px;
        font-size: 16px;
        padding: 12px 10px;
    }

    label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .contact-feedback {
        padding: 16px 36px 14px 16px;
        border-radius: 6px;
    }

    .contact-feedback .close {
        right: 8px;
        top: 8px;
        font-size: 18px;
    }

    .contact-feedback-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .contact-feedback-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .btn-send {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }

    .help-block.with-errors {
        font-size: 12px;
    }
}