.taw-wrap {
    max-width: 1020px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: inherit;
}

.taw-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f4f9f7 100%);
    border: 1px solid rgba(5, 77, 60, 0.18);
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 22px 60px rgba(5, 45, 36, 0.12);
}

.taw-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #063b31, #07866d 58%, #d4ad36);
}

.taw-header {
    margin-bottom: 28px;
}

.taw-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    text-decoration: none;
}

.taw-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(4, 67, 53, 0.16));
}

.taw-eyebrow {
    display: inline-block;
    color: #075f4d;
    font-size: 13px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 750;
}

.taw-header h2 {
    margin: 0 0 12px;
    color: #082b25;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
}

.taw-header p {
    max-width: 760px;
    margin: 0;
    color: #41564f;
    font-size: 17px;
    line-height: 1.6;
}

.taw-form p {
    margin: 0 0 18px;
}

.taw-form label,
.taw-fieldset legend {
    display: block;
    color: #143b33;
    font-weight: 650;
    margin-bottom: 8px;
}

.taw-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.taw-form input[type="text"],
.taw-form input[type="email"],
.taw-form input[type="url"] {
    width: 100%;
    border: 1px solid rgba(5, 77, 60, 0.24);
    border-radius: 14px;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.96);
    color: #102e28;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.taw-form input:focus {
    outline: none;
    border-color: #07866d;
    box-shadow: 0 0 0 4px rgba(7, 134, 109, 0.13);
}

.taw-fieldset {
    border: 1px solid rgba(5, 77, 60, 0.18);
    border-radius: 18px;
    padding: 20px;
    margin: 8px 0 20px;
    background: rgba(255, 255, 255, 0.72);
}

.taw-fieldset legend {
    padding: 0 8px;
}

.taw-fieldset label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 18px 8px 0;
    font-weight: 400;
    color: #29463f;
}

.taw-consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400;
    color: #314a43;
    line-height: 1.5;
}

.taw-button {
    border: none;
    border-radius: 999px;
    padding: 16px 28px;
    background: linear-gradient(100deg, #054d3c, #07866d);
    color: #ffffff;
    font-weight: 750;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(5, 77, 60, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.taw-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(5, 77, 60, 0.3);
}

.taw-alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.taw-alert-success {
    background: #e9f7f1;
    border: 1px solid #a8dbc8;
    color: #07523f;
}

.taw-alert-error {
    background: #fff0f0;
    border: 1px solid #e8b5b5;
    color: #8a1f1f;
}

.taw-newsletter {
    background: rgba(212, 173, 54, 0.10);
    border: 1px solid rgba(168, 126, 20, 0.25);
    border-radius: 14px;
    padding: 14px 16px;
}

.taw-newsletter small {
    display: block;
    margin-left: 28px;
    margin-top: 6px;
    color: #59665f;
    font-size: 13px;
}

@media (max-width: 720px) {
    .taw-card {
        padding: 26px 22px;
    }

    .taw-brand {
        align-items: flex-start;
    }

    .taw-logo {
        width: 58px;
        height: 58px;
    }

    .taw-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
