:root {
    --clr-p: #ff9f35;
    --clr-s: #fa8201;
    --clr-dark: #313131;
    --clr-grey: #4c4c4c;
    --clr-light: #f8f8f8;
    --clr-white: #ffffff;
    --clr-line: #eeeeee;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Merriweather', 'Josefin Sans', sans-serif;
    line-height: 1.6;
    color: var(--clr-grey);
    background-color: var(--clr-white);
    -webkit-font-smoothing: antialiased;
}

.limit-width { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.top-nav-zone {
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-line);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex { display: flex; justify-content: center; }

@media (min-width: 768px) { .nav-flex { justify-content: flex-start; } }

.site-branding a {
    font-size: 24px; font-weight: 700; color: var(--clr-dark);
    text-decoration: none; letter-spacing: 1.5px;
}

.body-padding { padding: 40px 0; }

.text-flow > h1, .text-flow > h2, .text-flow > h3, .text-flow > p, .text-flow > ul, .text-flow > ol {
    text-align: left; max-width: 900px; margin-left: auto; margin-right: auto; margin-bottom: 20px;
}

/* Reduced Heading Sizes */
h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(24px, 5vw, 36px);
    color: var(--clr-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
}
h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(20px, 4vw, 28px);
    color: var(--clr-dark);
    margin: 40px auto 15px;
    border-left: 5px solid var(--clr-p);
    padding-left: 15px;
}
h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    color: var(--clr-dark);
    margin: 25px auto 12px;
}

ul, ol { padding-left: 40px; }
li { margin-bottom: 10px; }

/* --- MOBILE CARD TABLE TRANSFORMATION (Main Listing) --- */
.promo-area { margin: 30px auto 40px; max-width: 900px; }

@media (max-width: 767px) {
    .listing-grid, .listing-grid thead, .listing-grid tbody, .listing-grid tr, .listing-grid td { display: block; }
    .listing-grid thead { display: none; }
    .listing-grid tr {
        margin-bottom: 20px; border: 1px solid var(--clr-line); border-radius: 12px;
        padding: 20px; background: var(--clr-white); box-shadow: 0 4px 12px rgba(0,0,0,0.05); text-align: center;
    }
    .listing-grid td { border: none; padding: 10px 0; }
    .brand-cell { flex-direction: column; gap: 10px; }
    .brand-logo { width: 140px; height: auto; margin: 0 auto; display: block; }
    .action-link { display: block; width: 100%; padding: 15px; }
}

@media (min-width: 768px) {
    .listing-grid { width: 100%; border-collapse: collapse; }
    .listing-grid th { background: var(--clr-dark); color: #fff; padding: 15px; text-align: left; }
    .listing-grid td { padding: 20px 15px; border-bottom: 1px solid var(--clr-line); vertical-align: middle; }
    .brand-cell { display: flex; align-items: center; justify-content: flex-start; }
    .brand-logo { width: 120px; height: auto; display: block; }
}

/* --- DATA SCROLL TABLES (Pros/Cons, Specs) --- */
.scroll-wrap {
    overflow-x: auto;
    margin: 30px auto;
    max-width: 900px;
    border: 1px solid var(--clr-line);
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
}
.scroll-wrap table { width: 100%; border-collapse: collapse; min-width: 600px; }
.scroll-wrap th { background: var(--clr-light); padding: 15px; text-align: left; font-weight: 700; color: var(--clr-dark); }
.scroll-wrap td { padding: 15px; border-bottom: 1px solid var(--clr-line); vertical-align: top; }

/* Buttons & Footer */
.action-link {
    background: var(--clr-s); color: var(--clr-white); padding: 12px 25px;
    border-radius: 6px; text-decoration: none; font-weight: bold; transition: 0.3s;
    display: inline-block; text-align: center;
}
.action-link:hover { background: var(--clr-p); }

.bottom-zone { background: #181818; color: var(--clr-white); padding: 40px 0; text-align: center; margin-top: 60px; }
.bottom-zone a { color: var(--clr-white); text-decoration: none; }