/* Base & Resets */
:root {
    --primary-color: #0A192F;    /* Deep Navy Blue */
    --secondary-color: #112240;  /* Lighter Navy */
    --accent-color: #D4AF37;     /* Elegant Gold */
    --accent-hover: #F1C40F;     /* Brighter Gold for hover */
    --text-main: #333333;
    --text-light: #8892B0;       /* Soft blue-grey */
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px -10px rgba(10, 25, 47, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

.w-100 { width: 100%; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }

/* Pricing Table Modern */
.pricing-table-modern {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-white);
}

.pricing-table-modern th,
.pricing-table-modern td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.pricing-table-modern th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.pricing-table-modern tr:last-child td {
    border-bottom: none;
}

.pricing-table-modern tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}

.pricing-table-modern tbody tr:hover td {
    background-color: rgba(69, 131, 230, 0.05);
    transform: translateX(5px);
}

.pricing-table-modern .price-column {
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
    font-size: 1.15rem;
}

.pricing-table-modern td {
    color: var(--text-color);
    font-size: 1rem;
}

/* Animations */

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}
.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Utility Classes */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed);
    background-color: var(--primary-color);
}

.header.scrolled {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-top-call {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all var(--transition-speed);
}

.header.scrolled .logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--bg-white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

.header:not(.scrolled) .main-nav a {
    color: var(--bg-white);
}

/* Hide header top on scroll logic handled via JS classes */
.header.scrolled .header-top {
    display: none;
}

.mobile-menu-btn {
    display: none;
    color: var(--bg-white);
    font-size: 24px;
    cursor: pointer;
}

/* Sections Base */
.section {
    padding: 100px 0;
}
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-inline: auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px; /* Offset for header */
}

/* Video Banner Hero */
.hero-video {
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 25, 47, 0.72), rgba(10, 25, 47, 0.72));
    z-index: 1;
}

.hero-video .hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--bg-white);
    max-width: 800px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    gap: 30px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
}
.hero-features i {
    margin-right: 8px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
    text-align: center;
    height: 100%;
    border-bottom: 4px solid var(--accent-color);
}
.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-text {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
}

.highlight-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-speed);
}
.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing-card {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #eaeaea;
}

.pricing-info {
    padding: 60px;
    flex: 2;
}

.pricing-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-action {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin: 15px 0 5px;
}
.price-label {
    margin-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services / Brands Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.2);
}

.card-img {
    height: 180px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card-body p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item, .faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.accordion-header, .faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-speed);
    list-style: none; /* Hide default summary arrow */
}

.faq-question::-webkit-details-marker {
    display: none; /* Hide arrow in WebKit */
}

.accordion-header:hover, .faq-question:hover {
    background: var(--bg-light);
}

.accordion-header::after, .faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform var(--transition-speed);
}

.accordion-header.active, details[open] > .faq-question {
    background: var(--primary-color);
    color: var(--bg-white);
}

.accordion-header.active::after, details[open] > .faq-question::after {
    transform: rotate(180deg);
}

.accordion-content, .faq-answer {
    background: var(--bg-white);
    padding: 0 25px 20px;
    color: var(--text-main);
    margin-top: 15px;
    line-height: 1.6;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px 0;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

/* Regions Section */
.regions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.region-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

.region-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.region-desc {
    margin-bottom: 25px;
    color: var(--text-light);
}

.region-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.region-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.region-columns a {
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.region-columns a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 0.8rem;
}

.region-columns a:hover {
    color: var(--primary-color);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-col.links-col ul li {
    margin-bottom: 10px;
}
.footer-col.links-col a:hover {
    color: var(--accent-color);
}

.footer-phone a {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    white-space: nowrap;
}

.footer-bottom {
    background-color: #05101f;
    padding: 20px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(69, 131, 230, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-detail h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.contact-detail p, .contact-detail a {
    margin: 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--primary-color);
}

.working-hours {
    background: rgba(69, 131, 230, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.working-hours h4 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.hours-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.footer-bottom p {
    margin: 0;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-wp {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.float-wp:hover {
    transform: scale(1.1);
    color: white;
}

.float-call {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.float-call:hover {
    transform: scale(1.05);
}

/* Animations */
.fade-in-up {
    animation: fadeInUpAnim 0.6s ease-out forwards;
}

@keyframes fadeInUpAnim {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Inner Pages (About etc.) */
.page-hero {
    height: auto;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 100px;
    color: var(--bg-white);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.about-content-section {
    padding: 80px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content-text p, .main-content p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-vision .mv-block {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.mv-block h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-us ul.check-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
}
.why-us ul.check-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}

.rounded-shadow {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
}

/* Sidebar Layout */
.page-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--accent-color);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.sidebar-widget-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

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

.sidebar-list a {
    color: var(--text-main);
    display: flex;
    align-items: center;
    transition: all var(--transition-speed);
}

.sidebar-list a i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.8rem;
    transition: transform var(--transition-speed);
}

.sidebar-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    font-weight: 500;
}

.sidebar-list a:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-content-grid, .page-content-grid {
        grid-template-columns: 1fr;
    }
    .about-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        flex-direction: column;
    }
    .regions-grid {
        grid-template-columns: 1fr;
    }
    .region-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        padding: 80px 30px 30px;
        transition: 0.4s;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }
    .main-nav.active {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    .header:not(.scrolled) .main-nav a {
        color: var(--bg-white); /* Always white in mobile drawer */
    }
    .main-nav a {
        font-size: 1.2rem;
    }
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    .region-cols-3, .region-columns {
        grid-template-columns: 1fr;
    }
}
