:root {
    --primary: #7DD3FC;
    --secondary: #E0E7FF;
    --accent: #C084FC;
    --background: #F8FAFC;
    --surface: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --border-color: #E2E8F0;
    --neon-glow: rgba(125, 211, 252, 0.3);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.text-muted {
    color: #64748b !important;
}

.pastel-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    transition: all 0.3s ease-out;
}

.pastel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05), 0 0 15px var(--neon-glow);
}

.btn-pill {
    border-radius: 9999px;
    transition: all 0.3s ease-out;
}

.btn-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon-glow);
}

.section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .section-spacing {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

/* ===== header ===== */
.site-header-block .js-mobile-nav.is-open {
    transform: translateX(0);
}

.site-header-block .nav-link-active {
    color: #7DD3FC;
    position: relative;
}

.site-header-block .nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #7DD3FC;
    border-radius: 2px;
}

@media (max-width: 767px) {
    .site-header-block .container {
        height: 64px;
    }
}

/* ===== hero ===== */
.grenthor-hero {
    font-family: 'Inter', sans-serif;
}

.grenthor-hero .grenthor-hero-bg {
    transition: transform 0.8s ease-out;
}

.grenthor-hero:hover .grenthor-hero-bg {
    transform: scale(1.05);
}

.grenthor-hero h1 {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.grenthor-hero h2 {
    line-height: 1.4;
    color: #E0E7FF;
}

.grenthor-hero .js-hero-cta {
    background: linear-gradient(135deg, #7DD3FC 0%, #C084FC 100%);
    border: none;
    color: #0F172A;
    box-shadow: 0 4px 15px rgba(125, 211, 252, 0.3);
}

@media (max-width: 767px) {
    .grenthor-hero {
        padding: 60px 0;
        min-height: 450px;
    }

    .grenthor-hero h1 {
        line-height: 1.2;
    }
}

/* ===== test-drives-grid ===== */
.test-drives-grid-block .js-sort-btn.active {
    border-color: #7DD3FC;
    background-color: #7DD3FC;
    color: #0F172A;
    box-shadow: 0 4px 15px rgba(125, 211, 252, 0.4);
}

.test-drives-grid-block .js-post-card {
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.test-drives-grid-block .js-post-card:hover {
    transform: translateY(-8px);
}

.test-drives-grid-block .js-post-card a img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.test-drives-grid-block .container {
    max-width: 1280px;
}

/* ===== garage-tips ===== */
.garage-tips-section .filter-btn.is-active {
    background-color: #7DD3FC;
    border-color: #7DD3FC;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(125, 211, 252, 0.3);
}

.garage-tips-section .filter-btn:hover:not(.is-active) {
    border-color: #7DD3FC;
    color: #7DD3FC;
}

.garage-tips-section .is-hidden {
    display: none !important;
}

.garage-tips-section .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== news-list ===== */
.news-list-section .js-filter-btn.active {
    background-color: #7DD3FC;
    border-color: #7DD3FC;
    color: #0F172A;
}

.news-list-section .js-news-card {
    height: 100%;
    min-height: 320px;
}

.news-list-section .js-news-card img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-list-section .js-search-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.news-list-section .js-news-grid {
    display: grid;
}

/* ===== newsletter ===== */
.newsletter-v1 .js-newsletter-form input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.newsletter-v1 .bg-gradient-to-r {
    background-size: 200% auto;
    transition: background-position 0.5s ease;
}

.newsletter-v1 .bg-gradient-to-r:hover {
    background-position: right center;
}

/* ===== footer ===== */
.grenthor-footer {
    font-family: 'Inter', sans-serif;
}

.grenthor-footer .footer-col-title {
    color: #0F172A;
}

.grenthor-footer .footer-link {
    color: #475569;
    transition: color 0.3s ease-out;
}

.grenthor-footer .footer-link:hover {
    color: #7DD3FC;
}

.grenthor-footer .share-icon {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.grenthor-footer .share-icon:hover {
    box-shadow: 0 0 15px rgba(125, 211, 252, 0.4);
    transform: translateY(-2px);
}

.grenthor-footer .footer-desc {
    max-width: 320px;
}

/* ===== PAGE: privacy ===== */
.policy-content-root__wrapper { font-family: 'Inter', sans-serif; }
.policy-content-root__container { transition: box-shadow 0.3s ease; }
.policy-content-root__h2 { color: #0F172A; line-height: 1.3; }
.policy-content-root__h3 { color: #0F172A; line-height: 1.3; }
.policy-content-root__p { color: #475569; hyphens: auto; }
.policy-content-root__li i { flex-shrink: 0; }
.policy-content-root__card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.policy-content-root__card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); }
.policy-content-root__contact-box { background-color: #F8FAFC; }
@media (max-width: 767px) {
  .policy-content-root__title { font-size: 18px !important; }
  .policy-content-root__h2 { font-size: 16px !important; }
  .policy-content-root__h3 { font-size: 14px !important; }
}

/* ===== PAGE: terms ===== */
.policy-content-root { background-color: #FFFFFF; font-family: 'Inter', sans-serif; min-height: 100vh; }.policy-content-root .policy-inner-content { background-color: #FFFFFF; position: relative; z-index: 1; }.policy-content-root .terms-header-block h1 { color: #0F172A; letter-spacing: -0.025em; }.policy-content-root .terms-item { background: #FFFFFF; border-radius: 24px; transition: transform 0.3s ease-out; }.policy-content-root .terms-item h2 { color: #0F172A; letter-spacing: -0.025em; border-left: 4px solid #7DD3FC; padding-left: 15px; }.policy-content-root .terms-list li i { font-size: 1.2rem; color: #C084FC; }.policy-content-root p { color: #475569; margin-bottom: 1rem; }.policy-content-root a { color: #7DD3FC; text-decoration: none; transition: color 0.3s ease; }.policy-content-root a:hover { color: #C084FC; }.policy-content-root .terms-header-block { border-bottom: 1px solid #E2E8F0; }@media (max-width: 767px) { .policy-content-root .policy-inner-content { padding-left: 16px; padding-right: 16px; } .policy-content-root .terms-item h2 { border-left-width: 3px; padding-left: 10px; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-root {
  background-color: #F8FAFC;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
.policy-content-root .disclaimer-container {
  width: 100%;
}
.policy-content-root .disclaimer-section {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
.policy-content-root .disclaimer-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.policy-content-root h1, .policy-content-root h2 {
  color: #0F172A !important;
}
.policy-content-root p, .policy-content-root li {
  color: #475569 !important;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .policy-content-root .disclaimer-section {
    padding: 16px;
    border-radius: 16px;
  }
  .policy-content-root h1 {
    font-size: 18px !important;
  }
  .policy-content-root h2 {
    font-size: 16px !important;
  }
  .policy-content-root .disclaimer-header {
    text-align: center;
  }
}

/* ===== PAGE: cookies ===== */
.policy-content-root .cookies-policy-container {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  color: #475569;
}

.policy-content-root .cookies-content-box {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
}

.policy-content-root .cookies-header {
  margin-bottom: 48px;
  text-align: center;
}

.policy-content-root .cookies-title {
  color: #0F172A;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .policy-content-root .cookies-title {
    font-size: 32px;
  }
}

.policy-content-root .cookies-intro {
  font-size: 14px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.policy-content-root .cookies-section {
  margin-bottom: 40px;
}

.policy-content-root .section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0F172A;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .policy-content-root .section-heading {
    font-size: 26px;
  }
}

.policy-content-root .section-heading i {
  color: #7DD3FC;
  font-size: 1.2em;
}

.policy-content-root .section-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.policy-content-root .cookies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .policy-content-root .cookies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.policy-content-root .cookie-card {
  background: #F8FAFC;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.policy-content-root .cookie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(125, 211, 252, 0.2);
  border-color: #7DD3FC;
}

.policy-content-root .card-title {
  color: #0F172A;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.policy-content-root .card-text {
  font-size: 13px;
  line-height: 1.5;
}

.policy-content-root .browser-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .policy-content-root .browser-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.policy-content-root .browser-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 12px;
  color: #475569;
  transition: all 0.2s ease;
}

.policy-content-root .browser-link i {
  font-size: 24px;
  margin-bottom: 8px;
  color: #7DD3FC;
}

.policy-content-root .browser-link:hover {
  background: #F0F9FF;
  border-color: #7DD3FC;
  color: #0F172A;
}

/* ===== PAGE: test-drives ===== */
.test-drives-page {
  font-family: 'Inter', sans-serif;
}
.test-drives-page .category-header-block {
  background-image: radial-gradient(at 0% 0%, rgba(125, 211, 252, 0.05) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(192, 132, 252, 0.05) 0px, transparent 50%);
}
.test-drives-page .js-hidden {
  display: none !important;
}
.test-drives-page .td-card {
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.test-drives-page .td-card:hover {
  transform: translateY(-8px);
}
.test-drives-page .js-search-input::placeholder {
  color: #94A3B8;
  opacity: 1;
}
.test-drives-page .line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== PAGE: garage-and-tuning ===== */
.garage-and-tuning-section .js-card-item {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}
.garage-and-tuning-section .js-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(125, 211, 252, 0.1), 0 10px 10px -5px rgba(125, 211, 252, 0.04);
}
.garage-and-tuning-section .js-search-input {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.garage-and-tuning-section .js-search-input:focus {
  box-shadow: 0 0 15px rgba(125, 211, 252, 0.2);
}
.garage-and-tuning-section h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.garage-and-tuning-section p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== PAGE: car-news ===== */
.category-intro { border-bottom: 1px solid #E2E8F0; }
.category-intro__title { line-height: 1.2; color: #0F172A; }
.category-intro__subtitle { line-height: 1.6; color: #475569; }
.news-section .news-card { display: flex; flex-direction: column; background: #FFFFFF; transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); }
.news-section .news-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(125, 211, 252, 0.1), 0 10px 10px -5px rgba(125, 211, 252, 0.04); border-color: #7DD3FC; }
.news-section .news-card img { transition: transform 500ms ease; }
.news-section .news-card:hover img { transform: scale(1.05); }
.news-section .js-filter-btn.active { background-color: #7DD3FC; border-color: #7DD3FC; color: #FFFFFF; }
.news-section .js-news-search::placeholder { color: #94A3B8; }
@media (max-width: 767px) {
  .news-section .news-card h2 { font-size: 16px; }
  .news-section .news-card p { font-size: 14px; }
}

/* ===== PAGE: about-and-contact ===== */
.about-section .shadow-sm { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); }.about-section .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(125, 211, 252, 0.15); }.contact-form-section .js-input-name::placeholder, .contact-form-section .js-input-email::placeholder, .contact-form-section .js-input-message::placeholder { color: #94A3B8; opacity: 1; }.contact-form-section .rounded-full { border-radius: 9999px; }.contact-form-section .bg-white { background-color: #FFFFFF; }

.comment-card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(8px);
}

.avatar-initials {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-pill i {
    transition: transform 0.3s ease;
}

.action-pill:hover i {
    transform: rotate(-10deg);
}

.main-comment-wrapper {
    animation: fadeInBlur 0.6s ease-out forwards;
}

@keyframes fadeInBlur {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.reply-card {
    position: relative;
    z-index: 1;
}

.reply-connector {
    border-color: #E2E8F0;
}

.reply-card:hover {
    border-color: #7DD3FC;
    transform: translateX(4px);
}

.avatar-initials {
    user-select: none;
}

.reply-body span {
    cursor: pointer;
}


/* ===== PAGE TEMPLATE: test-drives-list ===== */
.site-header-block .js-mobile-nav.is-open {
    transform: translateX(0);
}

.site-header-block .nav-link-active {
    color: #7DD3FC;
    position: relative;
}

.site-header-block .nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #7DD3FC;
    border-radius: 2px;
}

.grenthor-hero .grenthor-hero-bg {
    transition: transform 0.8s ease-out;
}

.grenthor-hero:hover .grenthor-hero-bg {
    transform: scale(1.05);
}

.grenthor-content-block .article-content-body h2 {
    color: #0F172A;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.grenthor-content-block .article-content-body p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.grenthor-footer .footer-col-title {
    color: #0F172A;
}

.grenthor-footer .footer-link {
    color: #475569;
    transition: color 0.3s ease-out;
}

.grenthor-footer .footer-link:hover {
    color: #7DD3FC;
}

.grenthor-footer .share-icon {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.grenthor-footer .share-icon:hover {
    box-shadow: 0 0 15px rgba(125, 211, 252, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .site-header-block .container {
        height: 64px;
    }

    .grenthor-hero {
        padding: 60px 0;
        min-height: 400px;
    }
}

/* ===== PAGE TEMPLATE: garage-list ===== */
.site-header-block .js-mobile-nav.is-open {
    transform: translateX(0);
}

.site-header-block .nav-link-active {
    color: #7DD3FC;
    position: relative;
}

.site-header-block .nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #7DD3FC;
    border-radius: 2px;
}

.garage-detail-hero {
    font-family: 'Inter', sans-serif;
}

.garage-rich-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .garage-rich-text h2 {
        font-size: 32px;
    }
}

.garage-rich-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .garage-rich-text h3 {
        font-size: 26px;
    }
}

.garage-rich-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.garage-rich-text ul,
.garage-rich-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.garage-rich-text li {
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.garage-rich-text ul {
    list-style-type: disc;
}

.garage-rich-text ol {
    list-style-type: decimal;
}

.garage-rich-text strong {
    font-weight: 700;
    color: #0F172A;
}

.grenthor-footer .footer-col-title {
    color: #0F172A;
}

.grenthor-footer .footer-link {
    color: #475569;
    transition: color 0.3s ease-out;
}

.grenthor-footer .footer-link:hover {
    color: #7DD3FC;
}

.grenthor-footer .share-icon:hover {
    box-shadow: 0 0 15px rgba(125, 211, 252, 0.4);
    transform: translateY(-2px);
}

.main-comment-wrapper .action-pill {
    background: #F8FAFC;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.main-comment-wrapper .action-pill:hover {
    border-color: #7DD3FC;
    background: white;
}

.js-like-btn.is-active {
    color: #7DD3FC !important;
    border-color: #7DD3FC;
}

/* ===== PAGE TEMPLATE: news-list ===== */
.site-header-block .js-mobile-nav.is-open {
    transform: translateX(0);
}

.site-header-block .nav-link-active {
    color: #7DD3FC;
    position: relative;
}

.site-header-block .nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #7DD3FC;
    border-radius: 2px;
}

.grenthor-hero-bg {
    transition: transform 0.8s ease-out;
}

.grenthor-hero:hover .grenthor-hero-bg {
    transform: scale(1.05);
}

.detail-content-area blockquote p {
    line-height: 1.3;
}

.grenthor-footer .footer-link:hover {
    color: #7DD3FC;
}

.grenthor-footer .share-icon:hover {
    box-shadow: 0 0 15px rgba(125, 211, 252, 0.4);
    transform: translateY(-2px);
}

.main-comment-wrapper .comment-card:hover {
    transform: translateY(-4px);
}

.reply-comment-wrapper .reply-card:hover {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .site-header-block .container {
        height: 64px;
    }

    .grenthor-hero h1 {
        font-size: 18px;
    }

    .detail-content-area h2 {
        font-size: 16px;
    }

    .detail-content-area h3 {
        font-size: 14px;
    }
}

/* ===== UNIFIED POLICY PAGE STYLES ===== */
/* Normalize containers to same max-width and padding */
.policy-inner-content,
.disclaimer-container,
.policy-content-root__container,
.cookies-policy-container .cookies-content-box {
    max-width: 900px !important;
    margin: 0 auto;
    padding: 40px 20px;
}

@media (min-width: 768px) {
    .policy-inner-content,
    .disclaimer-container,
    .policy-content-root__container,
    .cookies-policy-container .cookies-content-box {
        padding: 80px 40px;
    }
}

/* Normalize wrapper backgrounds */
.policy-content-root__wrapper {
    background: #F8FAFC;
}

/* Normalize main title (h1) */
.terms-header-block h1,
.disclaimer-header h1,
.policy-content-root__title,
.cookies-title {
    color: #0F172A !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
}

@media (min-width: 768px) {
    .terms-header-block h1,
    .disclaimer-header h1,
    .policy-content-root__title,
    .cookies-title {
        font-size: 42px !important;
    }
}

/* Normalize meta/date text */
.terms-header-block p,
.disclaimer-header p,
.policy-content-root__meta,
.cookies-intro {
    color: #475569 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

@media (min-width: 768px) {
    .terms-header-block p,
    .disclaimer-header p,
    .policy-content-root__meta,
    .cookies-intro {
        font-size: 16px !important;
    }
}

/* Normalize section headings (h2) */
.terms-item h2,
.disclaimer-section h2,
.policy-content-root__h2,
.cookies-section .section-heading {
    color: #0F172A !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

@media (min-width: 768px) {
    .terms-item h2,
    .disclaimer-section h2,
    .policy-content-root__h2,
    .cookies-section .section-heading {
        font-size: 32px !important;
    }
}

/* Normalize section icons */
.terms-item h2 i,
.disclaimer-section h2 i,
.policy-content-root__h2 i,
.cookies-section .section-heading i {
    color: #7DD3FC;
    font-size: 28px;
}

@media (min-width: 768px) {
    .terms-item h2 i,
    .disclaimer-section h2 i,
    .policy-content-root__h2 i,
    .cookies-section .section-heading i {
        font-size: 32px;
    }
}

/* Normalize body text (p) */
.terms-item p,
.disclaimer-section p,
.policy-content-root__p,
.cookies-section .section-text,
.cookies-intro {
    color: #475569 !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin-bottom: 15px !important;
}

@media (min-width: 768px) {
    .terms-item p,
    .disclaimer-section p,
    .policy-content-root__p,
    .cookies-section .section-text {
        font-size: 18px !important;
    }
}

/* Normalize lists */
.terms-item ul,
.terms-item ol,
.disclaimer-section ul,
.disclaimer-section ol,
.policy-content-root__body ul,
.policy-content-root__body ol {
    color: #475569;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 1.25rem;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .terms-item ul,
    .terms-item ol,
    .disclaimer-section ul,
    .disclaimer-section ol,
    .policy-content-root__body ul,
    .policy-content-root__body ol {
        font-size: 18px;
    }
}

.terms-item ul,
.disclaimer-section ul,
.policy-content-root__body ul {
    list-style-type: disc;
}

.terms-item ol,
.disclaimer-section ol,
.policy-content-root__body ol {
    list-style-type: decimal;
}

.terms-item li,
.disclaimer-section li,
.policy-content-root__body li {
    margin-bottom: 0.5rem;
}

/* Normalize section spacing */
.terms-item,
.disclaimer-section,
.policy-content-root__section {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .terms-item,
    .disclaimer-section,
    .policy-content-root__section {
        margin-bottom: 45px;
    }
}

/* Normalize cookies page card styles */
.cookies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .cookies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cookie-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
}

.cookie-card .card-title {
    color: #0F172A;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .cookie-card .card-title {
        font-size: 20px;
    }
}

.cookie-card .card-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .cookie-card .card-text {
        font-size: 16px;
    }
}

/* Normalize browser links grid */
.browser-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .browser-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.browser-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 14px;
    color: #475569;
}

.browser-link i {
    font-size: 20px;
    color: #7DD3FC;
}

/* Normalize cookies container */
.cookies-policy-container {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cookies-policy-container {
        padding: 80px 40px;
    }
}

.cookies-content-box {
    background: white;
}

.cookies-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E2E8F0;
}

.cookies-section {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .cookies-section {
        margin-bottom: 45px;
    }
}

/* Policy contact info styling */
.policy-contact-info {
    margin-top: 40px;
}

/* Footer contact styling */
.footer-contact {
    font-size: 14px;
}

.footer-contact a {
    color: #475569;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #7DD3FC;
}