* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    color: #333;
    background: #f9f9f9;
}

a {
    text-decoration: none;
    color: #46a28d;
}

ul {
    margin: 0;
    padding: 0;
    list-style: disc inside;
}
.nav-menu{
    list-style: none;
}
/* ---------- HEADER ---------- */

.header {
    background: #ffffff;
}

.header-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.logo {
    line-height: 1.2;
    text-transform: uppercase;
    margin: auto;
}

.logo-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-stars {
    font-size: 14px;
    color: #46a28d;
}

.logo-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
}

.header-banner {
    flex: 0 0 468px;
    height: 60px;
    background: #2aa9e0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
}

/* ---------- NAV ---------- */

.main-nav {
    background: #46a28d;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
}

.nav-menu li a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffffff;
}

.nav-menu li:first-child a {
    padding-left: 0;
}

.nav-menu li a:hover {
    background: rgba(0, 0, 0, 0.08);
}

.nav-icon {
    margin-right: 5px;
}

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-search input {
    border: none;
    padding: 8px 30px 8px 10px;
    border-radius: 2px;
    font-size: 13px;
}

.nav-search button {
    border: none;
    background: transparent;
    margin-left: -25px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

/* ---------- MAIN CONTENT ---------- */

.page-wrapper {
    padding: 30px 15px 60px;
}

.content-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 35px 40px 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.page-title {
    position: relative;
    padding-bottom: 1em;
    color: #262c4b;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
    width: 100%;
    line-height: 1.25em;
    font-family: "Montserrat";
    text-align: center;
    box-sizing: border-box;
}

.page-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    border-top: 1px solid #46a28d;
}

.intro-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ---------- BONUS CARDS ---------- */

.bonus-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.bonus-card {
    flex: 1 1 0;
    background: #fafafa;
    border: 1px solid #e1e1e1;
    display: flex;
    flex-direction: column;
}

.bonus-thumb img {
    width: 100%;
    display: block;
}

.bonus-card-body {
    padding: 15px 18px 10px;
    font-size: 13px;
}

.bonus-card-subtitle {
    margin: 0 0 5px;
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
    color: #999;
}

.bonus-card-title {
    margin: 0 0 12px;
    text-align: center;
    font-size: 15px;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.bonus-table th,
.bonus-table td {
    padding: 6px 4px;
    border-top: 1px solid #e6e6e6;
}

.bonus-table th {
    width: 40%;
    font-weight: 400;
    color: #555;
    text-align: left;
    background: #f4f4f4;
}

.bonus-table td {
    background: #f9f9f9;
}

.bonus-table .highlight {
    color: #d9534f;
    font-weight: 600;
}

.bonus-card-footer {
    margin-top: auto;
    padding: 15px 18px 18px;
    background: #ffffff;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 11px 25px;
    font-size: 12px;
    text-transform: uppercase;
    background: #46a28d;
    color: #ffffff;
    border-radius: 2px;
}

.btn-primary:hover {
    background: #3c8f7b;
}

/* ---------- TEXT SECTIONS ---------- */

.section-title {
    margin: 10px 0 20px;
    text-align: center;
    font-size: 18px;
}

.section-title--small {
    font-size: 16px;
    margin-top: 15px;
}

.section-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.section-list {
    font-size: 14px;
    line-height: 1.7;
    padding-left: 18px;
    margin-bottom: 20px;
}

.section-list li {
    margin-bottom: 6px;
}

.notice-box {
    margin: 20px 0;
    padding: 12px 15px;
    font-size: 13px;
    border-left: 3px solid #46a28d;
    background: #f5fffb;
}

/* ---------- BONUS TYPES BLOCK ---------- */

.bonus-types {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 25px;
}

.bonus-type {
    flex: 1 1 0;
    text-align: left;
    font-size: 13px;
}

.bonus-type img {
    max-width: 120px;
    margin-bottom: 10px;
}

.bonus-type-title {
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 6px;
}

.bonus-type-text {
    line-height: 1.7;
}

.bonus-type-bottom {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

/* ---------- FAQ ---------- */

.faq-section {
    margin-top: 35px;
}

.faq-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */

.footer {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* ---------- RESPONSIVE ---------- */
.card-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 23px;
}
.card-col {
    padding: 0 11px;
    margin-bottom: 22px;
    box-sizing: border-box;
    width: 33.333%;
}
.card {
    box-shadow: 0 4px 4px rgba(0, 0, 0, .2);
    height: 100%;
    max-width: 372px;
    margin: auto;
    box-sizing: border-box;
    line-height: 1.3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.card__img {
    text-align: center;
    min-height: 1px;
}
img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}
.card__header {
    text-align: center;
    padding: 12px 10px 17px;
    letter-spacing: 1px;
}
.card__header-subtitle {
    color: #999;
    font: 12px 'OpenSans', sans-serif;
    margin-bottom: 9px;
}
.card__header-title:last-child {
    margin-bottom: 0;
}
.card__content {
    padding-bottom: 30px;
}
.table {
    display: table;
    width: 100%;
    font: 13px 'OpenSans', sans-serif;
}
.table__row {
    display: table-row;
}
.table__row:nth-child(odd) {
    background-color: #eee;
}
.table__cell {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    box-sizing: border-box;
    padding: 8px 25px;
}
.table__cell:last-child {
    font-family: 'OpenSans-Semibold', sans-serif;
}
.cell_span{
	font-weight:600;
	color:#e53330;
}
.table__cell.promo-value-wrapper {
    display: flex;
    width: 100%;
    gap: 0.5rem;
    cursor: pointer;
	padding: 8px 15px 8px 25px;
}
.card__footer {
    padding: 0 10px 30px;
    margin-top: auto;
}
.card .btn-default {
    width: 100%;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
}
.btn-default, .wpcf7-submit {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    padding: 10px 30px 9px;
    letter-spacing: .04em;
    color: #fff!important;
    text-transform: uppercase;
    text-align: center;
    font: 14px / 1.1 'OpenSans-Semibold', sans-serif;
    border-radius: 4px;
    overflow: hidden;
    background-color: #46a28d;
    border-bottom: 4px solid #3d917e;
    text-decoration: none;
    position: relative;
    z-index: 0;
}
.btn-default:hover, .wpcf7-submit:hover{
	text-decoration:none;
}
.btn-default:after, .wpcf7-submit:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c5376;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.entry-title{
	position: relative;
    padding-bottom: 1em;
    color: #262c4b;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
    width: 100%;
    line-height: 1.25em;
    font-family: "Montserrat";
    text-align: center;
    box-sizing: border-box;
}
.entry-title:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    border-top: 1px solid #46a28d;
}


@media screen and (max-width: 700px) {
    .card-wrap {
        margin-left: -10px;
        margin-right: -10px;
    }
	.card-col {
        padding: 0;
		width:100%;
    }
    .bonus-type{
        min-width:100%;
    }
    
    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-banner {
        width: 100%;
    }

    .nav-inner {
        flex-wrap: wrap;
    }

    .nav-search {
        width: 100%;
        margin-top: 8px;
    }

    .nav-search input {
        width: 100%;
    }

    .bonus-cards {
        flex-direction: column;
    }

    .bonus-types {
        flex-direction: column;
    }
    
    .content-card {
        padding: 25px 20px 30px;
    }

    .page-title {
        font-size: 18px;
    }
	
}


