.section {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    margin-bottom: 30px
}

.section-title {
    background: #bfe8ec;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 15px
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px
}

.field label {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px
}
label {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px
}

input,
select,
textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%
}

textarea {
    resize: vertical
}

.scroll-box {
    max-height: 330px;
    overflow-y: auto
}

.row-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    background: #f9fbfc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative
}

.remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer
}

.add-btn,
.submit-btn {
    background: #0d294b;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px
}

.upload-box {
    margin-top: 15px;
    padding: 16px;
    border: 2px dashed #0d294b;
    border-radius: 10px;
    background: #f0fbfc
}

.declaration {
    font-size: 14px
}

.title-box {
    padding: 10px;
    text-align: center;
    background: linear-gradient(90deg, #0d294b, #1a4a8f);
    margin-top: 20px;
    color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.title-box h2{
    line-height: 1.5;
}
.text-mmmt{
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
}
.declaration input{
    width: auto;
}