body {
    background: #f9fafb;
}

header {
    background: #0f7a4a;
    color: white;
    padding: 15px 30px;
}


header h1 {
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.button {
    background: #c62828;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    background: #a81f1f;
}

footer {
    text-align: center;
    padding: 20px;
    background: #eee;
    margin-top: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
}

table th {
    background: #f1f1f1;
}
/* Hero card */
.hero {
    background: linear-gradient(135deg, #0f7a4a, #1b9c63);
    color: white;
}

.hero .button {
    background: white;
    color: #0b5ed7;
}

/* Grid layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 25px;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    header h1 {
        font-size: 20px;
    }

    nav a {
        display: inline-block;
        margin: 5px 5px;
    }
}
.main-header {
    background: #ffffff;
    border-bottom: 3px solid #f2b1b1;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px 20px;
}

/* Logo */
.logo-area {
    background: white;
}

.logo-area img {
    height: 55px;
}

/* Nav */
.main-nav {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.main-nav a {
    color: #0f7a4a;
    text-decoration: none;
    font-weight: bold;
}

/* Right info */
.header-info {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    font-size: 14px;
    color: #0f7a4a;
    font-weight: 600;
     align-items: center;
}

.header-info a {
    color: #0f7a4a;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .header-info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .main-nav {
        justify-content: center;
    }
}
/* ============================
   HEADER OVERRIDE (FINAL)
============================ */

header.main-header {
    background: white !important;
    padding: 6px 0 !important;
    border-bottom: 3px solid #f2b1b1;
}

header.main-header * {
    background: transparent !important;
}

/* smaller logo */
.logo-area img {
    max-height: 150px !important;
    width: auto;
}

/* nav links */
.main-nav a {
    color: #0f7a4a !important;
}

/* right side info */
.header-info {
    font-size: 13px;
}
/* FORCE RESET HEADER */
header {
    background: transparent !important;
    padding: 0 !important;
}