* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #d0d0d0;
    color: #222;
}

.page-shell {
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    background: #b3b3b3;
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.hero-title {
    width: 250px;
    height: 34px;
    background: #d4d4d4;
    border-radius: 16px;
}

.grid-layout {
    display: grid;
    gap: 20px;
}

.card {
    background: #c1c1c1;
    border-radius: 22px;
    padding: 22px;
}

.card-large {
    min-height: 340px;
}

.card-header {
    width: 180px;
    height: 30px;
    background: #b7b7b7;
    border-radius: 14px;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.field-label {
    width: 140px;
    height: 16px;
    background: #d6d6d6;
    border-radius: 10px;
}

input,
select {
    width: 100%;
    min-height: 44px;
    border: none;
    border-radius: 14px;
    padding: 10px 12px;
    background: #ececec;
}

.action-button {
    width: 220px;
    min-height: 50px;
    border: none;
    border-radius: 999px;
    background: #a9a9a9;
    cursor: pointer;
    margin-bottom: 18px;
}

.result-bar {
    width: 100%;
    height: 34px;
    background: #d5d5d5;
    border-radius: 16px;
}

.result-bar.short {
    width: 68%;
    margin-top: 12px;
}

.faq-card {
    min-height: 260px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-item {
    background: #e1e1e1;
    border-radius: 16px;
    padding: 14px;
    min-height: 110px;
}

.faq-label {
    width: 200px;
    height: 32px;
    font-size: x-small;
    background: #cccccc;
    border-radius: 5px;
    margin-bottom: 12px;
    text-align: center;
    color: black;

}

.faq-answer {
    width: 100%;
    height: 60px;
    background: #d8d8d8;
    border-radius: 14px;
    font-size: x-small;
    text-align: center;
}

.about-card {
    min-height: 260px;
}

.about-text {
    width: 100%;
    min-height: 170px;
    background: #d4d4d4;
    border-radius: 16px;
}

@media (min-width: 760px) {
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}


