* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f4ef;
    color: #292522;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 25px 100px;
}

.brand {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 38px;
}

h1 {
    font-size: 54px;
    line-height: 1.04;
    margin: 0 0 22px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.subtitle {
    font-size: 19px;
    line-height: 1.5;
    color: #68615b;
    margin: 0 0 42px;
}

.card,
.result,
.confirmed {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(40, 30, 20, 0.07);
    margin-bottom: 25px;
}

label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 9px;
}

.helper {
    font-size: 14px;
    color: #77706a;
    margin: 0 0 16px;
}

textarea,
input {
    width: 100%;
    border: 1px solid #ddd7d0;
    border-radius: 10px;
    padding: 15px;
    font-family: inherit;
    font-size: 15px;
    color: #292522;
    background: #fff;
    outline: none;
}

textarea {
    min-height: 145px;
    resize: vertical;
    line-height: 1.5;
}

textarea:focus,
input:focus {
    border-color: #81776e;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

button {
    width: 100%;
    margin-top: 22px;
    padding: 15px 20px;
    border: none;
    border-radius: 9px;
    background: #2d2926;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

.result h2,
.confirmed h2 {
    font-size: 27px;
    margin: 0 0 10px;
}

.result-intro,
.confirmed p {
    color: #6d6660;
    line-height: 1.5;
    margin-bottom: 25px;
}

.request-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 25px 0 30px;
}

.detail {
    background: #f7f4ef;
    border-radius: 12px;
    padding: 17px;
}

.detail span {
    display: block;
    font-size: 12px;
    color: #77706a;
    margin-bottom: 7px;
    font-weight: 600;
}

.detail strong {
    font-size: 15px;
}

.section {
    border-top: 1px solid #ebe6df;
    padding-top: 22px;
    margin-top: 22px;
}

.section h3 {
    font-size: 16px;
    margin: 0 0 14px;
}

.section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.section li {
    position: relative;
    padding: 10px 10px 10px 30px;
    border-bottom: 1px solid #f0ece7;
    line-height: 1.4;
}

.section li::before {
    content: "✓";
    position: absolute;
    left: 5px;
    font-weight: 700;
}

.intention {
    background: #faf8f5;
    border-radius: 12px;
    padding: 20px;
    border-top: none;
}

.intention p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    color: #514b46;
}

.verification p {
    margin: 0;
    color: #68615b;
    line-height: 1.5;
}

.confirm-button {
    margin-top: 30px;
}

.confirmed {
    border: 1px solid #ddd7d0;
}

.confirmed h2 {
    margin-bottom: 8px;
}

.hidden {
    display: none;
}

@media (max-width: 700px) {

    .container {
        padding: 45px 18px 70px;
    }

    h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 17px;
    }

    .card,
    .result,
    .confirmed {
        padding: 22px;
        border-radius: 15px;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .request-details {
        grid-template-columns: 1fr;
    }
}