:root {
    --coral: #ff6b4a;
    --coral-dark: #e55a3a;
    --coral-light: #fff0ed;
    --navy: #1e2a4a;
    --navy-light: #2d3a5c;
    --navy-dark: #141c32;
    --cream: #faf8f5;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #d1d1d1;
    --gray-400: #a0a0a0;
    --gray-500: #707070;
    --gray-600: #505050;
    --gray-700: #333333;
    --black: #111111;
    --success: #2ecc71;
    --warning: #f1c40f;
    --danger: #e74c3c;
    --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --max-width: 1140px;
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-round: 50px;
    --shadow-soft: 0 2px 15px rgba(30, 42, 74, 0.08);
    --shadow-medium: 0 5px 30px rgba(30, 42, 74, 0.12);
    --shadow-strong: 0 10px 50px rgba(30, 42, 74, 0.18);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-700);
    background-color: var(--cream);
}
body.no-scroll {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}
.announcement-strip {
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 10px 20px;
}
.announcement-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.announcement-strip__icon {
    font-size: 14px;
}
.announcement-strip p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}
@media (min-width: 768px) {
    .announcement-strip p {
        font-size: 13px;
    }
}
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--coral);
}
.site-header__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .site-header__container {
        padding: 0 40px;
    }
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand__symbol {
    font-size: 28px;
}
.brand__name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}
.brand__name sup {
    color: var(--coral);
    font-size: 12px;
}
.main-nav__menu {
    display: none;
}
@media (min-width: 768px) {
    .main-nav__menu {
        display: flex;
        gap: 30px;
    }
}
.main-nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}
.main-nav__link:hover {
    color: var(--coral);
}
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}
.hamburger i {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.3s;
}
.main-nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--white);
    padding: 100px 40px 40px;
    z-index: 1000;
}
.main-nav__menu.open .main-nav__link {
    font-size: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 50px;
}
@media (min-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr 380px;
        gap: 50px;
        padding: 60px 0 70px;
    }
}
.hero-split__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 16px;
}
.hero-split__title span {
    color: var(--coral);
}
@media (min-width: 768px) {
    .hero-split__title {
        font-size: 38px;
    }
}
@media (min-width: 1024px) {
    .hero-split__title {
        font-size: 44px;
    }
}
.hero-split__text {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 25px;
}
@media (min-width: 768px) {
    .hero-split__text {
        font-size: 18px;
    }
}
.hero-split__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: var(--radius-round);
    font-size: 13px;
    font-weight: 500;
}
.pill--outline {
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
}
.pill i {
    font-style: normal;
}
.promo-box {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: var(--white);
}
.promo-box__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.promo-box__icon {
    font-size: 28px;
}
.promo-box__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}
.promo-box__text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}
.promo-box__buttons {
    display: flex;
    gap: 12px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    flex: 1;
    text-align: center;
}
.btn--solid {
    background: var(--coral);
    color: var(--white);
}
.btn--solid:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}
.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}
.platforms-section {
    padding: 60px 0;
    background: var(--gray-100);
}
@media (min-width: 768px) {
    .platforms-section {
        padding: 80px 0;
    }
}
.section-intro {
    margin-bottom: 40px;
}
.section-intro__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
@media (min-width: 768px) {
    .section-intro__title {
        font-size: 32px;
    }
}
.section-intro__desc {
    font-size: 15px;
    color: var(--gray-500);
}
.platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}
@media (min-width: 700px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1000px) {
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.platform-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: var(--coral);
}
.platform-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 22px 22px 18px;
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
}
.platform-card__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.platform-card__desc {
    font-size: 13px;
    color: var(--gray-500);
}
.platform-card__score {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}
.score-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
}
.score-star {
    font-size: 16px;
}
.platform-card__middle {
    padding: 22px;
}
.platform-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-bottom: 20px;
    padding: 10px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}
.platform-card__logo img {
    max-height: 50px;
    max-width: 130px;
    object-fit: contain;
}
.platform-card__perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.platform-card__perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}
.checkmark {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.platform-card__bottom {
    padding: 0 22px 22px;
}
.cta-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 107, 74, 0.4);
}
.faq-section {
    padding: 60px 0;
    background: var(--white);
}
@media (min-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
}
.faq-section__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 35px;
}
@media (min-width: 768px) {
    .faq-section__title {
        font-size: 32px;
    }
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
.faq-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 25px;
    border-left: 4px solid var(--coral);
    transition: all 0.2s;
}
.faq-card:hover {
    background: var(--coral-light);
}
.faq-card__question {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}
.faq-card__answer {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}
.responsible-banner {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.responsible-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.responsible-banner__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}
.responsible-banner__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.responsible-banner__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: relative;
}
.responsible-banner__links a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.2s;
}
.responsible-banner__links a:hover {
    background: var(--coral);
    border-color: var(--coral);
}
.disclaimer-section {
    padding: 50px 0;
    background: var(--gray-100);
}
.disclaimer-block {
    background: var(--white);
    border: 2px solid var(--warning);
    border-radius: var(--radius-md);
    padding: 30px;
}
@media (min-width: 768px) {
    .disclaimer-block {
        padding: 40px;
    }
}
.disclaimer-block__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}
.disclaimer-block__text {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 15px;
}
.disclaimer-block__text:last-of-type {
    margin-bottom: 0;
}
.disclaimer-block__compliance {
    font-size: 13px;
    color: var(--gray-400);
    text-align: center;
    font-style: italic;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}
.disclaimer-block__compliance a {
    color: var(--coral);
    text-decoration: underline;
}
.age-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 42, 74, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.age-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}
.age-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
}
.age-modal-overlay.visible .age-modal {
    transform: scale(1);
}
.age-modal p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 30px;
}
.age-modal a {
    color: var(--coral);
    text-decoration: underline;
}
.age-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 480px) {
    .age-modal__actions {
        flex-direction: row;
    }
}
.age-modal__btn {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s;
}
.age-modal__btn--yes {
    background: var(--success);
    color: var(--white);
}
.age-modal__btn--yes:hover {
    background: #27ae60;
    transform: translateY(-2px);
}
.age-modal__btn--no {
    background: var(--gray-200);
    color: var(--gray-600);
}
.age-modal__btn--no:hover {
    background: var(--gray-300);
}
.blocked-screen {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.blocked-screen.visible {
    opacity: 1;
    visibility: visible;
}
.blocked-screen__content {
    text-align: center;
    padding: 40px;
}
.blocked-screen__content img {
    margin: 0 auto 25px;
}
.blocked-screen__content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 15px;
}
.blocked-screen__content p {
    font-size: 16px;
    color: var(--gray-500);
}
.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 50px 0 30px;
}
.site-footer__body p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}
.site-footer__partners {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    margin: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__partners img {
    height: 30px;
    width: auto;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}
.site-footer__partners img:hover {
    opacity: 0.8;
}
.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 25px;
}
.site-footer__nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}
.site-footer__nav a:hover {
    color: var(--coral);
}
.site-footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 0;
}
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 2px solid var(--coral);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-strong);
    z-index: 9998;
    display: none;
}
@media (min-width: 600px) {
    .cookie-notice {
        left: auto;
        max-width: 400px;
    }
}
.cookie-notice.visible {
    display: block;
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cookie-notice p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 18px;
    line-height: 1.5;
}
.cookie-notice a {
    color: var(--coral);
    text-decoration: underline;
}
.cookie-notice__buttons {
    display: flex;
    gap: 10px;
}
.cookie-notice__buttons button {
    flex: 1;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
.cookie-notice__buttons button:first-child {
    background: var(--gray-200);
    color: var(--gray-600);
}
.cookie-notice__buttons button:first-child:hover {
    background: var(--gray-300);
}
.cookie-notice__buttons button:last-child {
    background: var(--coral);
    color: var(--white);
}
.cookie-notice__buttons button:last-child:hover {
    background: var(--coral-dark);
}
.page-content {
    padding: 50px 0 80px;
    background: var(--cream);
    min-height: calc(100vh - 200px);
}
.page-header {
    margin-bottom: 50px;
    text-align: center;
}
.page-header__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .page-header__title {
        font-size: 42px;
    }
}
.page-header__date {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 15px;
}
.page-header__line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--coral-dark));
    margin: 0 auto;
    border-radius: 2px;
}
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.content-block {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
    .content-block {
        padding: 45px;
    }
}
.content-block--highlighted {
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--white) 100%);
    border-left: 5px solid var(--coral);
}
.content-block--emergency {
    background: var(--navy);
    color: var(--white);
}
.content-block--emergency .content-block__title {
    color: var(--white);
}
.content-block--emergency .content-block__subtitle {
    color: var(--coral-light);
}
.content-block__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}
.content-block__subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin: 30px 0 15px;
}
.content-block p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
}
.content-block p:last-child {
    margin-bottom: 0;
}
.content-block a {
    color: var(--coral);
    text-decoration: underline;
}
.content-block a:hover {
    color: var(--coral-dark);
}
.value-card {
    display: flex;
    gap: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.2s;
}
.value-card:hover {
    background: var(--coral-light);
}
.value-card:last-child {
    margin-bottom: 0;
}
.value-card__icon {
    font-size: 32px;
    flex-shrink: 0;
}
.value-card__content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.value-card__content p {
    margin-bottom: 0;
}
.commitment-list {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 25px 30px;
}
.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-600);
}
.commitment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.commitment-item:first-child {
    padding-top: 0;
}
.commitment-item__marker {
    color: var(--coral);
    font-weight: 700;
}
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 600px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.trust-card {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 25px;
    text-align: center;
    transition: all 0.2s;
}
.trust-card:hover {
    background: var(--coral-light);
    transform: translateY(-3px);
}
.trust-card__icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}
.trust-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.trust-card__text {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 0;
}
.update-notice {
    font-size: 13px;
    color: var(--gray-400);
    font-style: italic;
    margin-top: 20px;
}
.info-box {
    background: var(--coral-light);
    border-left: 4px solid var(--coral);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 25px;
    margin: 25px 0;
}
.info-box p {
    margin-bottom: 0;
    font-size: 14px;
}
.info-box--warning {
    background: #fff8e6;
    border-left-color: var(--warning);
}
.checklist {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 20px 25px;
    margin: 15px 0;
}
.checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-600);
}
.checklist__icon {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}
.warning-list {
    padding-left: 10px;
    margin: 15px 0;
}
.warning-list p {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-200);
}
.warning-list p:last-child {
    border-bottom: none;
}
.resource-card {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid var(--coral);
}
.resource-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}
.resource-card p {
    font-size: 14px;
    margin-bottom: 8px;
}
.resource-card p:last-child {
    margin-bottom: 0;
}
.comparison-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
}
@media (min-width: 600px) {
    .comparison-box {
        grid-template-columns: repeat(2, 1fr);
    }
}
.comparison-box__item {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 25px;
}
.comparison-box__item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--coral);
}
.comparison-box__item p {
    font-size: 14px;
    margin-bottom: 8px;
}
.questionnaire {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 25px;
    margin: 20px 0;
}
.questionnaire p {
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}
.questionnaire p:last-child {
    border-bottom: none;
}
.final-reminders {
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    padding: 25px;
    margin: 20px 0;
}
.final-reminders p {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    margin-bottom: 0;
}
.emphasis-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-top: 25px;
}
.content-block--highlighted .emphasis-text {
    background: rgba(255, 255, 255, 0.7);
}
.list-block {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 20px 25px;
    margin: 15px 0;
}
.list-block p {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0;
}
.list-block p:last-child {
    border-bottom: none;
}
.list-block--success {
    background: #e8f5e9;
    border-left: 4px solid var(--success);
}
.list-block--success p {
    border-bottom-color: rgba(46, 204, 113, 0.2);
}
.list-block--danger {
    background: #ffebee;
    border-left: 4px solid var(--danger);
}
.list-block--danger p {
    border-bottom-color: rgba(231, 76, 60, 0.2);
}
.cookie-type-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 25px;
    margin: 20px 0;
    transition: all 0.2s;
}
.cookie-type-card:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow-soft);
}
.cookie-type-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.cookie-type-card__icon {
    font-size: 28px;
}
.cookie-type-card__header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}
.cookie-type-card__details {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    margin-top: 15px;
}
.cookie-type-card__details p {
    font-size: 14px;
    margin-bottom: 8px;
}
.cookie-type-card__details p:last-child {
    margin-bottom: 0;
}
.cookie-table {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 20px 0;
}
.cookie-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}
@media (min-width: 768px) {
    .cookie-table__row {
        grid-template-columns: 1.5fr 1fr 1fr 2fr;
    }
}
.cookie-table__row:last-child {
    border-bottom: none;
}
.cookie-table__header {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
}
.cookie-table__row span {
    padding: 5px 0;
}
.browser-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}
.browser-item {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.browser-item strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 8px;
}
.browser-item p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 0;
    font-family: monospace;
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-xs);
}