@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary: #0d6b5c;
    --primary-dark: #0a5348;
    --primary-light: #0f8573;
    --accent: #c4a747;
    --black: #1a1a1a;
    --dark: #333;
    --light: #555;
    --white: #fff;
    --bg: #f7f8fa;
}

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

p { margin: 0; }

a, button, input, textarea {
    outline: 0;
    transition: all 0.25s ease;
}

a { text-decoration: none !important; }

html { scroll-behavior: smooth; }

body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    background: var(--bg);
    counter-reset: offer-counter;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
}

header, .banner, .section, .h2, .para, .flexbox, footer {
    width: 100%;
    float: left;
}

nav {
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
    width: 100%;
    padding: 12px 0;
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 32px;
    width: auto;
    vertical-align: middle;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
}

.menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 3;
}

.menu-btn span {
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 1px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 220px;
        height: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding-top: 60px;
        transition: 0.3s;
        gap: 0;
    }
    .menu a { padding: 12px 20px; font-size: 15px; }
    .menu.active { right: 0; }
    .logo { font-size: 18px; }
    .logo-img { height: 26px; }
    .menu-btn { display: flex; }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.color { color: var(--primary); }

.banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 32px 0;
    position: relative;
}

.banner .container {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    text-align: center;
}

.banner h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
}

.banner .h2 {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.95;
    margin: 0 0 12px;
}

.banner p {
    font-size: 14px;
    line-height: 22px;
    max-width: 640px;
    margin: 0;
    opacity: 0.9;
}

.section {
    padding: 24px 0;
    position: relative;
}

.section .container { position: relative; z-index: 2; }

.h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--black);
}

.para {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 16px;
    color: var(--dark);
}

.para:last-child { margin: 0; }

.flexgroup {
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.table-cu {
    width: 100%;
    max-width: 380px;
    float: left;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--white);
    border-radius: 12px;
    margin: 0 0 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.equal-size {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.table-cu .equal-size:last-child { border-bottom: none; }

.counter {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    position: absolute;
    left: 12px;
    top: -8px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    border-radius: 8px;
    counter-increment: offer-counter;
}

.counter::before { content: counter(offer-counter); }

.logo-cu {
    padding-top: 24px;
    min-height: 80px;
}

.logo-cu a img {
    width: 160px;
    max-width: 100%;
    height: auto;
}

.raiting {
    flex-direction: column;
    gap: 4px;
}

.raiting p { font-size: 18px; font-weight: 700; color: var(--black); }
.raiting img { width: 88px; }

.bonus { min-height: 52px; }

.h3 {
    color: var(--black);
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    margin: 0;
}

.h3 span { color: var(--primary); font-weight: 700; }

.listing { justify-content: flex-start; align-items: flex-start; }

.list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    text-align: left;
    gap: 6px;
}

.list li {
    position: relative;
    padding-left: 20px;
}

.list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.btn-box {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
}

.btn-cu {
    width: 100%;
    max-width: 200px;
    padding: 14px 20px;
    background: var(--primary);
    text-align: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
}

.btn-cu:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-box > img {
    width: 160px;
    max-width: 100%;
    height: auto;
}

.show-mbl { display: none; }

.section2 {
    background: var(--primary);
    color: var(--white);
}

.section2 .h2 { color: var(--white); }
.section2 .para { color: rgba(255, 255, 255, 0.9); }

.section1 {
    background: var(--dark);
    color: var(--white);
}

.section1 .h2,
.section1 .para { color: var(--white); }

.accordion {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    float: left;
    border-radius: 12px;
}

.accordion-item { border: none; }

.accordion-title {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin: 0 0 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-title:hover {
    background: rgba(255, 255, 255, 0.22);
}

.accordion-title span { font-size: 20px; transition: transform 0.2s; }

.accordion-content {
    color: rgba(255, 255, 255, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 20px;
}

.accordion-content p { margin: 14px 0; font-weight: 400; font-size: 14px; line-height: 22px; }

.accordion-content.open { max-height: 280px; }

footer {
    color: var(--white);
    text-align: center;
    padding: 24px 0;
    background: var(--primary-dark);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footerlinks {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.footerlinks img { height: 36px; }
.footerlinks a:hover { opacity: 0.85; }

.copyrights { font-size: 13px; opacity: 0.9; }

.alert {
    background: var(--black) !important;
    color: var(--white) !important;
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 12px 16px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    z-index: 9999;
    font-size: 13px;
}

.alert-close {
    border: none;
    border-radius: 6px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
}

.alert-close:hover { background: var(--primary-light); }

.hide { display: none !important; }

@media (max-width: 992px) {
    .show-desktop { display: none; }
    .show-mbl { display: block; }
    .banner h1 { font-size: 22px; }
    .banner p { font-size: 13px; }
    .table-cu { max-width: 100%; }
    .flexgroup { flex-direction: column; align-items: center; }
}

@media (max-width: 800px) {
    .h2 { font-size: 19px; }
    .para { font-size: 14px; }
}
