:root {
    --bg: #e8fff0;
    --card: #ffffff;
    --border: #d4e8da;
    --text: #1a1a1a;
    --muted: #5f6f64;
    --accent: #1e88e5;
    --nav-bg: #e7f7ec;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: min(1100px, 92%);
    margin: auto;
    padding: 22px;
}

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-wrap img {
    width: 55px;
    height: 55px;
}

.logo-wrap h1 {
    font-size: 20px;
    color: var(--accent);
    font-weight: 700;
}

/* NAV */
.site-header nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-header nav a {
    padding: 7px 14px;
    background: var(--nav-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    transition: .2s ease;
}

.site-header nav a:hover {
    background: var(--accent);
    color: #fff;
}

/* HERO */
.hero {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 26px;
}

.hero-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-left p {
    max-width: 450px;
}

.btn {
    display: inline-block;
    margin-top: 16px;
    background: var(--accent);
    padding: 12px 20px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.hero-right img {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    object-fit: cover;
}

/* INFO CARDS */
.info-cards {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.info-cards article {
    background: var(--card);
    padding: 22px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0px 2px 5px rgba(0,0,0,0.03);
}

/* FORM */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 10px;
}

/* TABLE */
table {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}

table th {
    background: #daf5e3;
}