/* ============================================
   PREMIUM DESIGN SYSTEM
   Shared styles for premium website design
   ============================================ */

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

/* ========== CSS VARIABLES ========== */
:root {
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #C5A880 0%, #e8d5b7 50%, #C5A880 100%);
    --gradient-gold: linear-gradient(135deg, #C5A880 0%, #f0e6d3 25%, #C5A880 50%, #a08960 75%, #C5A880 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-accent: 0 0 60px rgba(197, 168, 128, 0.3);

    /* Colors */
    --color-primary: #0a0a0a;
    --color-secondary: #fff;
    --color-accent: #C5A880;
    --color-accent-hover: #b8996e;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
}

/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.premium {
    font-family: var(--font-body);
    background: var(--gradient-primary);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

/* ========== PREMIUM NAVIGATION ========== */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.4s ease;
}

.premium-nav.scrolled {
    padding: 12px 40px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px !important;
    background: var(--gradient-accent) !important;
    border-radius: 30px !important;
    color: #0a0a0a !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--glow-accent) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero-premium {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 40px 100px;
    position: relative;
}

.hero-bg {
    position: fixed;
    inset: 0;
    background: var(--gradient-primary);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(197, 168, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(197, 168, 128, 0.1) 0%, transparent 50%);
    animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(2%, 2%) rotate(1deg);
    }

    50% {
        transform: translate(-1%, 3%) rotate(-1deg);
    }

    75% {
        transform: translate(1%, -2%) rotate(0.5deg);
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(197, 168, 128, 0.4);
    border-radius: 50%;
    animation: float 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 35%;
    top: 40%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 50%;
    top: 80%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 65%;
    top: 25%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.particle:nth-child(6) {
    left: 80%;
    top: 55%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    left: 90%;
    top: 35%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 5%;
    top: 75%;
    animation-delay: 1.5s;
    animation-duration: 19s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0.8;
    }
}

/* Hero Content */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gradient-accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    max-width: 900px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-subtitle em {
    font-style: normal;
    color: var(--color-accent);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ========== GLASS SECTION ========== */
.glass-section {
    position: relative;
    padding: 100px 60px;
}

.glass-section--subtle {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(197, 168, 128, 0.05) 50%, rgba(10, 10, 10, 0) 100%);
}

.glass-section--dark {
    background: rgba(0, 0, 0, 0.3);
}

/* ========== STATS CARDS ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(197, 168, 128, 0.1);
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: var(--glow-accent);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== GLASS CARDS ========== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: var(--glow-accent);
}

.glass-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.glass-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.glass-card__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    color: #0a0a0a;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-accent);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ========== FEATURE GRID ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 120px 60px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(197, 168, 128, 0.08) 100%);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== PREMIUM FOOTER ========== */
.premium-footer {
    padding: 80px 60px 40px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switch-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    padding: 5px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
}

.lang-switch-premium a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-switch-premium a.active {
    background: var(--gradient-accent);
    color: #0a0a0a;
}

.lang-switch-premium a:not(.active):hover {
    color: var(--color-accent);
}

/* ========== FORM STYLES ========== */
.glass-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
}

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

/* ========== DARK MODE TOGGLE ========== */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(197, 168, 128, 0.2);
    border-color: var(--color-accent);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: rotate(15deg);
}

/* Light Mode */
body.light-mode {
    --gradient-primary: linear-gradient(135deg, #f8f6f3 0%, #ebe6df 50%, #f0ebe4 100%);
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
}

body.light-mode .hero-bg {
    background: linear-gradient(135deg, #f8f6f3 0%, #ebe6df 50%, #f0ebe4 100%);
}

body.light-mode .hero-bg::before {
    background: radial-gradient(circle at 30% 30%, rgba(197, 168, 128, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(197, 168, 128, 0.15) 0%, transparent 50%);
}

body.light-mode .hero-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .hero-subtitle,
body.light-mode .section-description,
body.light-mode .glass-card__text,
body.light-mode .cta-text {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .section-title,
body.light-mode .cta-title,
body.light-mode .glass-card__title {
    color: #1a1a1a;
}

body.light-mode .premium-nav {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .nav-links a {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .nav-links a:hover,
body.light-mode .nav-links a.active {
    color: #1a1a1a;
}

body.light-mode .nav-toggle span {
    background: #1a1a1a;
}

body.light-mode .nav-logo img {
    filter: invert(1) brightness(0.2);
}

body.light-mode .footer-brand .nav-logo img {
    filter: invert(1) brightness(0.2);
}

body.light-mode .stat-card,
body.light-mode .glass-card,
body.light-mode .glass-form {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .stat-label {
    color: rgba(0, 0, 0, 0.5);
}

body.light-mode .premium-footer {
    background: rgba(0, 0, 0, 0.03);
    border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .footer-brand p,
body.light-mode .footer-links a {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .footer-bottom p {
    color: rgba(0, 0, 0, 0.4);
}

body.light-mode .particle {
    background: rgba(197, 168, 128, 0.6);
}

body.light-mode .btn-secondary {
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

body.light-mode .form-input,
body.light-mode .form-textarea {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

body.light-mode .form-label {
    color: rgba(0, 0, 0, 0.6);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .premium-nav {
        padding: 16px 20px;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .premium-nav.scrolled {
        background: rgba(10, 10, 10, 0.95);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column !important;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
        background: rgba(10, 10, 10, 0.98);
        padding-top: 120px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 1.3rem;
        text-transform: none;
        letter-spacing: 0.05em;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-premium {
        padding: 120px 20px 60px;
    }

    .glass-section,
    .content-section,
    .cta-section,
    .premium-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .glass-form {
        padding: 30px 20px;
    }

    .theme-toggle {
        bottom: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
    }

    .lang-switch-premium {
        bottom: 20px;
        right: 20px;
    }

    /* Override inline grid styles for mobile */
    [style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: 1.2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: 1fr 1.2fr"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(8"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Content section text alignment */
    .content-section [style*="text-align: left"] {
        text-align: center !important;
    }

    /* Fix inline grid gap on mobile */
    [style*="gap: 80px"] {
        gap: 40px !important;
    }

    [style*="gap: 60px"] {
        gap: 30px !important;
    }
}