/* Mercedes Crisp Style - Auto-themed */
:root {
    --re-primary: #210e1c;
    --re-secondary: #2d485c;
    --re-accent: #f1b725;
    --re-gold: #f5bd20;
    --re-gold-soft: #f1c93e;
    --re-gold-deep: #f5bf2a;
    --re-bg: #FFFFFF;
    --re-bg-alt: #F1F5F9;
    --re-bg-dark: #131217;
    --re-text: #250a23;
    --re-text-muted: #69748e;
    --re-text-light: #5d7a89;
    --re-border: #cfcedb;
    --re-border-light: #e8ecf1;
    --re-shadow-sm: 0 2px 8px rgba(33,32,62,0.08);
    --re-shadow-md: 0 4px 16px rgba(30,42,71,0.12);
    --re-shadow-lg: 0 8px 32px rgba(31,36,63,0.16);
    --re-shadow-gold: 0 4px 20px rgba(220,171,32,0.25);
    --re-radius-sm: 5px;
    --re-radius-md: 8px;
    --re-radius-lg: 17px;
    --re-radius-xl: 24px;
    --re-success: #2aa962;
    --re-error: #de4d3a;
    --re-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: var(--re-text);
    background: var(--re-bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.re-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Countdown Timer Component */
.re-countdown-bar {
    background: linear-gradient(95deg, var(--re-primary) 0%, var(--re-secondary) 100%);
    padding: 11px 0;
    position: relative;
    overflow: hidden;
}

.re-countdown-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.re-countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.re-countdown-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.re-countdown-timer {
    display: flex;
    gap: 9px;
}

.re-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 17px;
    border-radius: var(--re-radius-sm);
    min-width: 58px;
    backdrop-filter: blur(5px);
}

.re-countdown-num {
    font-size: 25px;
    font-weight: 700;
    color: var(--re-gold-soft);
    line-height: 1;
    font-family: 'Raleway', sans-serif;
}

.re-countdown-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.re-countdown-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--re-gold);
    color: var(--re-primary);
    padding: 13px 24px;
    border-radius: 47px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: var(--re-transition);
    box-shadow: var(--re-shadow-gold);
}

.re-countdown-cta:hover {
    background: var(--re-gold-soft);
    transform: translateY(-2px);
}

/* Header */
.re-header {
    background: #fff;
    border-bottom: 1px solid var(--re-border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: var(--re-shadow-sm);
}

.re-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 23px;
    max-width:100%;
    margin: 0 auto;
}

.re-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--re-primary);
}

.re-logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--re-gold) 0%, var(--re-gold-deep) 100%);
    border-radius: var(--re-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--re-primary);
    box-shadow: var(--re-shadow-gold);
}

.re-logo-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.6px;
}

.re-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.re-nav-item {
    color: var(--re-text);
    text-decoration: none;
    padding: 13px 20px;
    font-weight: 600;
    font-size: 11px;
    border-radius: var(--re-radius-sm);
    transition: var(--re-transition);
}

.re-nav-item:hover {
    background: var(--re-bg-alt);
    color: var(--re-primary);
}

.re-nav-item--current {
    background: rgba(216,162,38,0.12);
    color: var(--re-gold-deep);
}

.re-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 7px;
    cursor: pointer;
}

.re-burger-line {
    width: 24px;
    height: 2px;
    background: var(--re-primary);
    border-radius: 2px;
    transition: var(--re-transition);
}

.re-burger.is-open .re-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.re-burger.is-open .re-burger-line:nth-child(2) {
    opacity: 0;
}

.re-burger.is-open .re-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.re-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--re-border);
    padding: 14px 21px;
}

.re-mobile-menu.is-visible {
    display: flex;
}

.re-mobile-link {
    color: var(--re-text);
    text-decoration: none;
    padding: 14px 0;
    font-weight: 600;
    border-bottom: 2px solid var(--re-border-light);
    transition: var(--re-transition);
}

.re-mobile-link:last-child {
    border-bottom: none;
}

.re-mobile-link:hover {
    color: var(--re-gold-deep);
}

/* Hero Section */
.re-hero {
    background: linear-gradient(135deg, var(--re-bg-dark) 0%, var(--re-primary) 50%, var(--re-secondary) 100%);
    padding: 82px 17px;
    position: relative;
    overflow: hidden;
}

.re-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(217,172,30,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(197,169,105,0.1) 0%, transparent 50%);
}

.re-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.re-hero-tag {
    display: inline-block;
    background: rgba(215,159,31,0.2);
    color: var(--re-gold-soft);
    padding: 7px 18px;
    border-radius: 51px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 30px;
    border: 1px solid rgba(212,169,36,0.3);
}

.re-hero-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 23px;
    letter-spacing: -1px;
}

.re-hero-heading span {
    background: linear-gradient(90deg, var(--re-gold-soft), var(--re-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.re-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.re-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.re-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 17px 27px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    border-radius: var(--re-radius-md);
    transition: var(--re-transition);
    cursor: pointer;
    border: none;
}

.re-btn--gold {
    background: linear-gradient(135deg, var(--re-gold) 0%, var(--re-gold-deep) 100%);
    color: var(--re-primary);
    box-shadow: var(--re-shadow-gold);
}

.re-btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(210,172,37,0.4);
}

.re-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.re-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Main Layout with Sticky Sidebar */
.re-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 51px;
    padding: 59px 18px;
    max-width:100%;
    margin: 0 auto;
}

.re-content {
    min-width: 0;
}

/* Sticky Sidebar Component */
.re-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.re-sidebar-card {
    background: #fff;
    border-radius: var(--re-radius-lg);
    padding: 28px;
    box-shadow: var(--re-shadow-md);
    border: 1px solid var(--re-border);
    margin-bottom: 26px;
}

.re-sidebar-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--re-primary);
    margin-bottom: 23px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--re-border-light);
}

.re-sidebar-list {
    list-style: none;
}

.re-sidebar-list li {
    margin-bottom: 13px;
}

.re-sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--re-text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 12px 11px;
    border-radius: var(--re-radius-sm);
    transition: var(--re-transition);
    border-left: 3px solid transparent;
}

.re-sidebar-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--re-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.re-sidebar-list a:hover {
    background: var(--re-bg-alt);
    color: var(--re-primary);
    border-left-color: var(--re-gold);
}

.re-sidebar-cta {
    background: linear-gradient(135deg, var(--re-primary) 0%, var(--re-secondary) 100%);
    border-radius: var(--re-radius-lg);
    padding: 29px;
    text-align: center;
}

.re-sidebar-cta-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.re-sidebar-cta-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 17px;
    line-height: 1.6;
}

.re-sidebar-cta-btn {
    display: block;
    background: var(--re-gold);
    color: var(--re-primary);
    padding: 17px 23px;
    border-radius: var(--re-radius-md);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: var(--re-transition);
}

.re-sidebar-cta-btn:hover {
    background: var(--re-gold-soft);
    transform: translateY(-2px);
}

/* Article Content */
.re-article {
    background: #fff;
    border-radius: var(--re-radius-lg);
    padding: 48px;
    box-shadow: var(--re-shadow-md);
    border: 1px solid var(--re-border);
}

.re-intro {
    font-size: 19px;
    color: var(--re-text);
    line-height: 1.85;
    padding: 25px;
    background: linear-gradient(135deg, rgba(223,157,35,0.08) 0%, rgba(220,166,24,0.04) 100%);
    border-radius: var(--re-radius-md);
    border-left: 5px solid var(--re-gold);
    margin-bottom: 39px;
}

.re-article h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--re-primary);
    margin: 49px 0 24px;
    line-height: 1.25;
    position: relative;
    padding-left: 23px;
}

.re-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(180deg, var(--re-gold) 0%, var(--re-gold-deep) 100%);
    border-radius: 1px;
}

.re-article h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--re-secondary);
    margin: 37px 0 18px;
}

.re-article p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.85;
}

.re-article ul,
.re-article ol {
    margin: 21px 0;
    padding-left: 0;
    list-style: none;
}

.re-article li {
    padding: 15px 0 11px 34px;
    position: relative;
    border-bottom: 1px solid var(--re-border-light);
}

.re-article li:last-child {
    border-bottom: none;
}

.re-article ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 10px;
    background: var(--re-gold);
    border-radius: 50%;
}

.re-article ol {
    counter-reset: item;
}

.re-article ol li {
    counter-increment: item;
}

.re-article ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: var(--re-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--re-radius-sm);
}

/* Image Wrapper */
.re-img-block {
    margin: 41px 0;
    border-radius: var(--re-radius-lg);
    overflow: hidden;
    box-shadow: var(--re-shadow-lg);
    border: 1px solid var(--re-border);
}

.re-img-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.re-img-block:hover img {
    transform: scale(1.03);
}

/* Social Share Component */
.re-share {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 26px 0;
    border-top: 1px solid var(--re-border);
    border-bottom: 1px solid var(--re-border);
    margin: 39px 0;
}

.re-share-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--re-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.re-share-btns {
    display: flex;
    gap: 10px;
}

.re-share-btn {
    width: 45px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--re-radius-sm);
    background: var(--re-bg-alt);
    color: var(--re-text-muted);
    text-decoration: none;
    transition: var(--re-transition);
}

.re-share-btn:hover {
    background: var(--re-primary);
    color: #fff;
    transform: translateY(-2px);
}

.re-share-btn svg {
    width: 18px;
    height: 18px;
}

/* FAQ Accordion */
.re-faq {
    margin-top: 58px;
    padding-top: 49px;
    border-top: 2px solid var(--re-border);
}

.re-faq-header {
    text-align: center;
    margin-bottom: 43px;
}

.re-faq-title {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--re-primary);
    margin-bottom: 9px;
}

.re-faq-subtitle {
    font-size: 19px;
    color: var(--re-text-muted);
}

.re-faq-items {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.re-faq-item {
    background: var(--re-bg-alt);
    border-radius: var(--re-radius-md);
    border: 1px solid var(--re-border);
    overflow: hidden;
    transition: var(--re-transition);
}

.re-faq-item.is-open {
    background: #fff;
    box-shadow: var(--re-shadow-md);
    border-color: var(--re-gold);
}

.re-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
    width: 100%;
    padding: 22px 27px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.re-faq-q-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--re-primary);
    line-height: 1.4;
}

.re-faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--re-border-light);
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--re-transition);
}

.re-faq-item.is-open .re-faq-icon {
    background: var(--re-gold);
    transform: rotate(180deg);
}

.re-faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--re-text-muted);
}

.re-faq-item.is-open .re-faq-icon svg {
    color: var(--re-primary);
}

.re-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.re-faq-item.is-open .re-faq-a {
    max-height: 500px;
}

.re-faq-a-inner {
    padding: 0 24px 27px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--re-text);
}

/* Footer */
.re-footer {
    background: var(--re-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 57px 23px 29px;
    margin-top: auto;
}

.re-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 46px;
    max-width:100%;
    margin: 0 auto 41px;
}

.re-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
}

.re-footer-brand .re-logo-mark {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.re-footer-brand .re-logo-name {
    color: #fff;
    font-size: 18px;
}

.re-footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.re-footer-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 23px;
}

.re-footer-links {
    list-style: none;
}

.re-footer-links li {
    margin-bottom: 14px;
}

.re-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--re-transition);
}

.re-footer-links a:hover {
    color: var(--re-gold);
}

.re-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 23px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    max-width:100%;
    margin: 0 auto;
}

/* Contact Page Styles */
.re-contact-section {
    padding: 61px 20px;
}

.re-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 51px;
    max-width:100%;
    margin: 42px auto 0;
}

.re-contact-info-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 27px;
    background: var(--re-bg-alt);
    border-radius: var(--re-radius-md);
    margin-bottom: 17px;
}

.re-contact-icon {
    width: 46px;
    height: 48px;
    background: linear-gradient(135deg, var(--re-gold) 0%, var(--re-gold-deep) 100%);
    border-radius: var(--re-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.re-contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--re-primary);
}

.re-contact-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--re-primary);
    margin-bottom: 5px;
}

.re-contact-details p {
    font-size: 14px;
    color: var(--re-text-muted);
    margin: 0;
}

.re-form-wrapper {
    background: #fff;
    padding: 35px;
    border-radius: var(--re-radius-lg);
    box-shadow: var(--re-shadow-md);
    border: 1px solid var(--re-border);
}

.re-form-group {
    margin-bottom: 23px;
}

.re-form-label {
    display: block;
    font-weight: 600;
    color: var(--re-primary);
    margin-bottom: 8px;
    font-size: 17px;
}

.re-form-input,
.re-form-textarea,
.re-form-select {
    width: 100%;
    padding: 16px 13px;
    border: 2px solid var(--re-border);
    border-radius: var(--re-radius-sm);
    font-family: inherit;
    font-size: 14px;
    transition: var(--re-transition);
    background: var(--re-bg);
}

.re-form-input:focus,
.re-form-textarea:focus,
.re-form-select:focus {
    outline: none;
    border-color: var(--re-gold);
    box-shadow: 0 0 0 3px rgba(214,160,31,0.15);
}

.re-form-textarea {
    resize: vertical;
    min-height: 130px;
}

.re-form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--re-gold) 0%, var(--re-gold-deep) 100%);
    color: var(--re-primary);
    border: none;
    border-radius: var(--re-radius-md);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: var(--re-transition);
}

.re-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--re-shadow-gold);
}

.re-form-success {
    display: none;
    padding: 17px;
    background: rgba(36,179,100,0.1);
    border: 1px solid var(--re-success);
    border-radius: var(--re-radius-md);
    color: var(--re-success);
    text-align: center;
    margin-top: 19px;
}

.re-form-success.is-visible {
    display: block;
}

/* Page Title Section */
.re-page-header {
    background: linear-gradient(135deg, var(--re-primary) 0%, var(--re-secondary) 100%);
    padding: 46px 21px;
    text-align: center;
}

.re-page-title {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.re-page-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* Single Column Layout (for about, privacy, terms) */
.re-single-layout {
    padding: 63px 19px;
}

.re-single-article {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--re-radius-lg);
    padding: 49px;
    box-shadow: var(--re-shadow-md);
    border: 1px solid var(--re-border);
}

/* Responsive */
@media (max-width: 1024px) {
    .re-layout {
        grid-template-columns: 1fr;
    }

    .re-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 26px;
    }

    .re-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .re-header { position: relative !important; }
    .re-nav {
        display: none;
    }

    .re-burger {
        display: flex;
    }

    .re-hero-heading {
        font-size: 32px;
    }

    .re-hero-desc {
        font-size: 16px;
    }

    .re-hero-btns {
        flex-direction: column;
    }

    .re-btn {
        width: 100%;
        justify-content: center;
    }

    .re-countdown-inner {
        flex-direction: column;
        gap: 14px;
    }

    .re-sidebar {
        grid-template-columns: 1fr;
    }

    .re-article {
        padding: 29px 20px;
    }

    .re-article h2 {
        font-size: 24px;
    }

    .re-contact-layout {
        grid-template-columns: 1fr;
    }

    .re-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .re-single-article {
        padding: 25px 23px;
    }
}

@media (max-width: 480px) {
    .re-countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .re-countdown-unit {
        min-width: 48px;
        padding: 7px 10px;
    }

    .re-countdown-num {
        font-size: 18px;
    }
}

/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 11px;
    margin-bottom: 7px;
    border: 1px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 10px 27px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 13px 23px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 5px 19px;
        font-size: 12px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: 120px !important;
        padding: 10px !important;
        margin: 0 auto 9px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 15px 19px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 9px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.re-wrapper, .re-content, .re-hero-inner, .re-companies-container, 
.re-article, .re-container, .re-footer-inner, .re-main {
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.re-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.re-td-action {
    text-align: center !important;
}
.re-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}

/* === CONTENT_WIDTH_FORCE v3d === */
:root {
  --dnpe-container-narrow: 1500px !important;
  --dnpe-container: 1500px !important;
  --dnpe-article-max: 1500px !important;
  --cagh-container-narrow: 1500px !important;
  --bflp-article-max: 1500px !important;
  --container-narrow: 1500px !important;
  --content-width: 1500px !important;
  --article-max-width: 1500px !important;
}
@media (min-width: 769px) {
  html body .dnpe-article,
  html body article.dnpe-article,
  html body .dnpe-hero-content,
  html body .dnpe-faq-list,
  html body .dnpe-author-box,
  html body .bflp-article,
  html body .content-article,
  html body article.content-article,
  html body .niel-section,
  html body .hero-inner,
  html body .article-content,
  html body .content-area,
  html body .cagh-article,
  html body .cagh-faq,
  html body .mb-article,
  html body .mb-faq,
  html body main,
  html body article {
    max-width: 1500px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  html body .dnpe-container,
  html body .bflp-container,
  html body .cagh-container,
  html body .mb-container {
    max-width: 1500px !important;
  }
}
/* === /CONTENT_WIDTH_FORCE v3d === */
