body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eef7f1;
    color: #10251b;
}

.header-logo {
    text-align: center;
    padding: 8px 10px;
    background: #0a3d2e;
}

.header-logo img {
    height: 200px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.header {
    background: #0a3d2e;
    color: #ffffff;
    padding: 14px 24px;
    border-bottom: 4px solid #32d98f;
}

.header h1 {
    margin: 0;
    font-size: 22px;
}

.nav {
    background: #0a3d2e;
    padding: 10px 20px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 10px;
    font-weight: bold;
    padding: 7px 9px;
    border-radius: 8px;
    display: inline-block;
}

.nav a:hover {
    background: #20b276;
}

.container {
    max-width: 1200px;
    margin: 22px auto;
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid #cfe8d6;
}

.card {
    background: #f8fff9;
    border: 1px solid #b9e4c6;
    border-left: 6px solid #20b276;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.card h2,
.card h3 {
    color: #0a3d2e;
}

.button {
    display: inline-block;
    background: #20b276;
    color: #ffffff;
    padding: 11px 18px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin: 4px;
}

.button:hover {
    background: #32d98f;
    color: #06351f;
}

input,
select,
textarea {
    padding: 11px;
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    color: #10251b;
    border: 1px solid #9ed7b2;
    border-radius: 8px;
    box-sizing: border-box;
}

table {
    width: 100%;
    background: #ffffff;
    border-collapse: collapse;
    color: #10251b;
}

th {
    background: #0a3d2e;
    color: #ffffff;
}

td,
th {
    border: 1px solid #b9e4c6;
    padding: 8px;
}

tr:nth-child(even) {
    background: #f2fbf5;
}

tr:hover {
    background: #dcf7e6;
}

.footer {
    text-align: center;
    padding: 25px;
    color: #446b58;
    font-size: 13px;
}

.dashboard-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 22px;
}

.stat-card {
    background: #e9f9ef;
    border: 1px solid #b9e4c6;
    border-left: 6px solid #20b276;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    width: 180px;
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #0a3d2e;
}

.stat-label {
    color: #446b58;
    font-weight: bold;
}
.trust-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: bold;
    color: #0a3d2e;
}

.trust-box div {
    background: #f8fff9;
    border: 1px solid #b9e4c6;
    border-radius: 20px;
    padding: 8px 12px;
}