h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 30pt;
    font-family: GothamBold, Arial, sans-serif;
    text-align: center;
    color: #fff600;
}

h3 {
    margin: 0;
    font-size: 19pt;
    font-family: GothamBold, Arial, sans-serif;
    text-align: center;
    text-shadow: black 3px 2px 4px;
}

h4 {
    margin: 40px 0;
    font-size: 15pt;
    font-family: GothamBold, Arial, sans-serif;
    text-align: center;
    color: #428f27;
}

#send {
    border: 2px solid #428f27;
    padding: 25px;
    border-radius: 25px;
    margin: auto;
    width: 100%;
    max-width: 500px;
    background-color: #e6e6e6;
}

.field {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    align-items: center;
}

#send .field:nth-child(3) {
    align-items: flex-start;
}

.field label {
    font-family: GothamBold, Arial, sans-serif;
    font-size: 13pt;
    width: 100%;
    margin-bottom: 3px;
    margin-left: 35px;
}

.field img {
    box-shadow: black 3px 3px 5px 0px;
    margin-right: 11px;
}

.field input, .field textarea {
    border: 2px solid #428f27;
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 12pt;
    flex-grow: 1;
    background-color: white;
    outline: #54d726;
    font-family: GothamBookRegular, Arial, sans-serif;
}

.field textarea {
    height: 150px;
}

.submit {
    font-family: GothamBookRegular, Arial, sans-serif;
    color: white;
    border-radius: 5px;
    background-color: #26a200;
    font-size: 15pt;
    padding: 10px 0;
    width: 70%;
    margin: 35px auto 0;
    display: block;
    border: 0;
    min-width: 170px;
    cursor: pointer;
    transition: 0.2s;
    max-width: 250px;
    outline: none;
}

.submit:hover {
    background-color: #1d7d00;
}

.form-message {
    display: none;
    margin-bottom: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.success-message {
    padding: 16px 18px;
    border-radius: 12px;
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.success-message strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 21pt;
    }

    h3 {
        font-size: 14pt;
    }

    h4 {
        margin: 20px 0;
        font-size: 13pt;
    }

    #send {
        padding: 15px;
        max-width: 450px;
    }

    .field label {
        font-size: 11pt;
    }

    .field input, .field textarea {
        padding: 6px 9px;
        font-size: 10pt;
    }

    .submit {
        font-size: 13pt;
        margin-top: 20px;
        max-width: 220px;
    }
}