/* Styles for Premium Business Laptop Bag Landing Page */

/* CSS Variables within the main wrapper */
.main-wrapper {
    --primary-color: #1a1a1a; /* Very Dark Brown/Black */
    --accent-color: #d4af37;  /* Gold */
    --accent-hover: #b8860b;  /* Dark Goldenrod */
    --bg-light: #fdfbf7;      /* Beige / Off-White */
    --bg-gray: #f4f4f4;       /* Light Gray */
    --bg-dark: #121212;       /* Deep Black */
    --text-main: #2d2d2d;
    --text-muted: #666666;
    --text-white: #ffffff;
    --white-opacity: rgba(255, 255, 255, 0.85); /* Increased for better legibility */
    --transition-base: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --container-wide: 1400px;
}

/* Base Stylings (No * selector as per rule) */
.main-wrapper, 
.main-wrapper .section-hero,
.main-wrapper .section-lifestyle,
.main-wrapper .section-problem,
.main-wrapper .section-solution,
.main-wrapper .section-features,
.main-wrapper .section-benefits,
.main-wrapper .section-usage,
.main-wrapper .section-testimonials,
.main-wrapper .section-comparison,
.main-wrapper .section-urgency,
.main-wrapper .section-final,
.main-wrapper .section-faq,
.main-wrapper .section-footer {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Base Body lock for mobile */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100vw;
}

.main-wrapper .container {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: var(--container-width);
}

.main-wrapper h1, 
.main-wrapper h2, 
.main-wrapper h3, 
.main-wrapper h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.main-wrapper p {
    margin: 0 0 1rem 0;
}

.main-wrapper a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

.main-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-wrapper img {
    max-width: 100%;
    display: block;
}

/* --- Layout Components --- */
.main-wrapper .container {
    max-width: var(--container-width);
}

.main-wrapper .container-wide {
    max-width: var(--container-wide);
}

.main-wrapper .max-small {
    max-width: 800px;
}

.main-wrapper .section-padding {
    padding: 100px 0;
}

.main-wrapper .text-center {
    text-align: center;
}

.main-wrapper .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.main-wrapper .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.main-wrapper .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.main-wrapper .grid-2-align-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- Utility Typography --- */
.main-wrapper .text-large {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.main-wrapper .text-base {
    font-size: 1rem;
    color: var(--text-muted);
}

.main-wrapper .accent-text {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.main-wrapper .text-white { color: var(--text-white); }
.main-wrapper .text-white-opacity { color: var(--white-opacity); }

/* --- Buttons --- */
.main-wrapper .btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(0);
}

.main-wrapper .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.main-wrapper .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.main-wrapper .btn-secondary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.main-wrapper .btn-secondary:hover {
    background-color: var(--accent-hover);
}

.main-wrapper .btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.main-wrapper .btn-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.125rem;
}

/* --- Header / Navbar --- */
.main-wrapper .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background-color: transparent;
}

.main-wrapper .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-wrapper .nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.main-wrapper .nav-menu {
    display: flex;
    gap: 3rem;
}

.main-wrapper .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.main-wrapper .nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-base);
}

.main-wrapper .navbar.nav-active .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.main-wrapper .navbar.nav-active .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.main-wrapper .nav-menu li a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary-color);
    opacity: 0.8;
}

.main-wrapper .nav-menu li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.main-wrapper .btn-nav {
    padding: 0.75rem 1.75rem;
    font-size: 0.8125rem;
    box-shadow: none;
}

.main-wrapper .btn-nav:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-wrapper .btn-full {
    width: 100%;
    text-align: center;
}

.main-wrapper .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.main-wrapper .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* --- Hero Section Update (Adjustment for Navbar) --- */
.main-wrapper .section-hero {
    min-height: 100vh; /* Set to full height */
    padding-top: 5rem; /* Space for navbar */
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background-color: var(--bg-light);
    overflow: hidden;
}

.main-wrapper .hero-content {
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 10% 4rem 15%;
}

.main-wrapper .hero-badge {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    margin-bottom: 2rem;
    border: 1px solid var(--accent-color);
}

.main-wrapper .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.main-wrapper .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.main-wrapper .hero-trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.main-wrapper .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
}

.main-wrapper .hero-visual {
    position: relative;
    background-color: #ebe7e0;
}

/* Moving the Sticky Nav styles here */
.main-wrapper .navbar.static-nav {
    position: relative;
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-wrapper .sticky-nav {
    position: fixed;
    top: -100px; /* Initially hidden */
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 0;
    z-index: 1100;
    transition: top 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.main-wrapper .sticky-nav.active {
    top: 0;
}

.main-wrapper .sticky-nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.main-wrapper .sticky-nav-product {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.main-wrapper .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- General Sections --- */
.main-wrapper .section-gray { background-color: var(--bg-gray); }
.main-wrapper .section-dark { 
    background-color: var(--bg-dark); 
    color: white; 
}
.main-wrapper .section-dark .section-title {
    color: white;
}

.main-wrapper .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

/* --- Lifestyle --- */
.main-wrapper .rounded { border-radius: 12px; }
.main-wrapper .shadow-lg { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.main-wrapper .lifestyle-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.main-wrapper .list-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* --- Problem Cards --- */
.main-wrapper .problem-card {
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-wrapper .problem-icon {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 1.5rem;
}

/* --- Solution --- */
.main-wrapper .feature-highlight {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.main-wrapper .highlight-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

/* --- Features --- */
.main-wrapper .feature-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

/* --- Benefits --- */
.main-wrapper .benefit-box {
    padding: 2rem;
}

.main-wrapper .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* --- Testimonials --- */
.main-wrapper .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.main-wrapper .testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-wrapper .stars {
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.main-wrapper .testimonial-author {
    margin-top: 2rem;
}

.main-wrapper .testimonial-author strong {
    display: block;
    color: var(--primary-color);
}

.main-wrapper .testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- Comparison Table --- */
.main-wrapper .comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.main-wrapper .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.main-wrapper .comparison-table th, 
.main-wrapper .comparison-table td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.main-wrapper .comparison-table th {
    background-color: var(--primary-color);
    color: white;
}

.main-wrapper .comparison-table .highlight-col {
    background-color: #fff9eb;
    font-weight: 600;
}

.main-wrapper .comparison-table th.highlight-col {
    color: var(--primary-color);
}

/* --- Urgency --- */
.main-wrapper .urgency-box {
    background-color: #fff4e5;
    padding: 5rem 3rem;
    border-radius: 20px;
    border: 2px dashed var(--accent-color);
}

.main-wrapper .urgency-tag {
    background-color: #ff0000;
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.main-wrapper .scarcity-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 2.5rem;
}

/* --- FAQ --- */
.main-wrapper .faq-list {
    margin-top: 3rem;
}

.main-wrapper .faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.main-wrapper .faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    cursor: pointer;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-wrapper .faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.main-wrapper .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
}

/* --- Footer --- */
.main-wrapper .section-footer {
    background-color: #262c30 !important; /* Ensure it overrides global defaults if any */
    color: white;
    padding: 100px 0 50px 0;
}

.main-wrapper .section-footer .container {
    background-color: transparent !important;
}

.main-wrapper .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 6rem;
    margin-bottom: 60px;
}

.main-wrapper .footer-logo {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.main-wrapper .footer-desc {
    font-size: 1rem;
    color: var(--white-opacity);
    max-width: 300px;
    margin-bottom: 2rem;
}

/* Footer Badges */
.main-wrapper .footer-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.main-wrapper .badge-item {
    font-size: 0.825rem;
    color: var(--white-opacity);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-wrapper .section-footer h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.main-wrapper .section-footer p {
    font-size: 1rem;
    color: var(--white-opacity);
    margin-bottom: 1rem;
}

.main-wrapper .footer-links ul li {
    margin-bottom: 1rem;
}

.main-wrapper .footer-links ul li a {
    color: var(--white-opacity);
    font-size: 1rem;
    transition: color 0.2s;
}

.main-wrapper .footer-links ul li a:hover {
    color: white;
}

.main-wrapper .footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.main-wrapper .footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: var(--white-opacity);
}

/* --- Animations / Transitions --- */
.main-wrapper .reveal-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.main-wrapper .reveal-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.main-wrapper .reveal-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.main-wrapper .revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Scale Animation for Button --- */
@keyframes scalePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.main-wrapper .scale-anim {
    animation: scalePulse 2s infinite ease-in-out;
}

/* --- Usage Section --- */
.main-wrapper .section-usage .gap-small {
    gap: 2rem;
}

.main-wrapper .usage-item {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-base);
}

.main-wrapper .usage-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.main-wrapper .usage-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.main-wrapper .usage-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* --- Legal Pages --- */
.main-wrapper .section-legal {
    background-color: white;
}

.main-wrapper .legal-text h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem 0;
}

.main-wrapper .legal-text h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem 0;
}

.main-wrapper .legal-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.main-wrapper .legal-text ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.main-wrapper .legal-text a {
    color: var(--accent-color);
}

.main-wrapper .legal-text a:hover {
    text-decoration: underline;
}

/* --- Product Details Page Styles --- */
.main-wrapper .grid-2-align-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.main-wrapper .main-img-wrap {
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.main-wrapper #mainProductImg {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: opacity 0.3s;
}

.main-wrapper .thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.main-wrapper .thumb-grid img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.main-wrapper .thumb-grid img:hover {
    border-color: var(--accent-color);
}

.main-wrapper .thumb-grid img.thumb-active {
    border-color: var(--accent-color);
    background-color: rgba(0,0,0,0.05);
}

.main-wrapper .product-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.main-wrapper .product-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-wrapper .tax-info {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.main-wrapper .product-highlights {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 2rem 0;
    margin-bottom: 2.5rem;
}

.main-wrapper .highlight-point {
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.main-wrapper .product-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Technical Specs Grid */
.main-wrapper .tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.main-wrapper .tech-item {
    background-color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.main-wrapper .tech-item strong {
    color: var(--primary-color);
}

.main-wrapper .tech-item span {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Similar Product Cards */
.main-wrapper .product-card-small {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
}

.main-wrapper .product-card-small:hover {
    transform: translateY(-8px);
}

.main-wrapper .product-card-small img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.main-wrapper .product-card-small .card-content {
    padding: 2rem;
}

.main-wrapper .product-card-small h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.main-wrapper .card-price {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Mobile Responsiveness for Product Page */
@media (max-width: 992px) {
    .main-wrapper .grid-2-align-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .main-wrapper #mainProductImg {
        height: 400px;
    }
    .main-wrapper .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Modals (Keep for now if needed, or remove later) --- */
.main-wrapper .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.main-wrapper .modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 3rem;
    border-radius: 12px;
    width: 80%;
    max-width: 700px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.main-wrapper .modal-close {
    position: absolute;
    right: 2rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .main-wrapper .section-hero {
        grid-template-columns: 1fr;
    }
    .main-wrapper .hero-content {
        padding: 5rem 2rem;
    }
    .main-wrapper .grid-2, 
    .main-wrapper .grid-3, 
    .main-wrapper .grid-4,
    .main-wrapper .grid-2-align-center {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .main-wrapper .nav-menu {
        display: none; /* Reset displayed menu */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        transition: all 0.4s ease;
    }

    .main-wrapper .navbar.nav-active .nav-menu {
        display: flex; /* Show menu on active */
    }

    .main-wrapper .nav-menu li a {
        font-size: 1.5rem;
    }

    .main-wrapper .nav-toggle {
        display: flex;
    }

    .main-wrapper .nav-cta {
        display: none;
    }
    .main-wrapper .hero-visual {
        height: 60vh;
    }
    .main-wrapper .hero-img {
        order: -1;
    }
    .main-wrapper .hero-title {
        font-size: 2.5rem;
    }
    .main-wrapper .section-padding {
        padding: 60px 0;
    }
    .main-wrapper .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .main-wrapper .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
