/* 
  Zirise Theme Variables 
  Primary: Deep Blue #2F5D8C
  Accent 1 (Red): #E94B35
  Accent 2 (Green): #34A853
  Accent 3 (Yellow): #FBBC05
  Bg: Black #0F0F0F / White #FFFFFF
  Secondary Box: Light Grey #F5F5F5
  Text: Muted #6B7280 / Dark #111111 
*/

:root {
    --primary: #2F5D8C;
    --primary-dark: #23486e;
    --accent-red: #E94B35;
    --accent-green: #34A853;
    --accent-yellow: #FBBC05;

    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-dark: #0F0F0F;
    --bg-gradient: linear-gradient(135deg, #F8F9FB 0%, #E8EEF7 100%);
    --bg-gradient-dark: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);

    --text-dark: #111111;
    --text-muted: #6B7280;
    --text-light: #FFFFFF;

    --grad-primary: linear-gradient(135deg, #2F5D8C, #E94B35);
    --grad-secondary: linear-gradient(135deg, #2F5D8C, #34A853, #FBBC05);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-gradient);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    loading: lazy;
}

.section-padding {
    padding: 5rem 5%;
}

.bg-light {
    background: linear-gradient(135deg, #F8F9FB 0%, #E8EEF7 50%, #F0F4FB 100%) !important;
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(47, 93, 140, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 5%;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 5%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    background: #ffffff;
    padding: 5px;
    border-radius: 5px;
}

/* .brand-logo-text is intentionally hidden, we use icon-only brand in headers */
.brand-logo-text {
    display: none;
}

.navbar.scrolled .brand-logo-text {
    color: var(--text-dark);
}

.footer-brand .brand-logo-text {
    color: var(--bg-white); /* Footer is dark */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    color: var(--bg-white);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

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

.nav-link:hover::after {
    width: 100%;
}

.sale-link {
    color: var(--accent-red) !important;
}

.nav-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.action-btn {
    font-size: 1.4rem;
    color: var(--bg-white);
}

.navbar.scrolled .action-btn {
    color: var(--text-dark);
}

.action-btn:hover {
    color: var(--primary);
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.navbar.scrolled .menu-btn {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    text-shadow: none;
}

.hero-subtext {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: none;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* USPS Section */
.usp-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    border-radius: 16px;
}

.usp-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-light);
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-flex;
    padding: 1rem;
    background: rgba(47, 93, 140, 0.05);
    border-radius: 50%;
    transition: var(--transition);
}

.usp-card:hover .usp-icon {
    background: var(--primary);
    color: var(--bg-white);
    transform: scale(1.1);
}

.usp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.usp-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
}

.tall-card {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.category-card:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.category-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.category-card:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.category-card:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

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

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    z-index: 2;
    color: var(--bg-white);
}

.category-info h3 {
    font-size: 1.8rem;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card:hover .link-btn {
    opacity: 1;
    color: var(--accent-yellow);
}

.link-btn i {
    transition: transform 0.3s;
}

.category-card:hover .link-btn i {
    transform: translateX(4px);
}

/* Offer Banner */
.offer-banner {
    position: relative;
    background: linear-gradient(135deg, #1a2a4e 0%, #2d1b4e 50%, #1a3a5e 100%);
    padding: 6rem 5%;
    text-align: center;
    color: var(--bg-white);
    overflow: hidden;
}

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    background: var(--accent-red);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.offer-banner h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.offer-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.offer-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-red);
    bottom: -50px;
    right: -50px;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    transition: var(--transition);
}

.product-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
    aspect-ratio: 3/4;
    margin-bottom: 1rem;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
}

.product-badge.sale {
    background: var(--accent-red);
    color: white;
}

.product-badge.new {
    background: var(--accent-green);
    color: white;
}

.add-to-cart-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.product-image-container:hover .product-img {
    transform: scale(1.05);
}

.product-image-container:hover .add-to-cart-btn {
    bottom: 15px;
}

.add-to-cart-btn:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.product-details {
    padding: 0 0.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.product-name:hover {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.current-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

/* Social Proof */
.rating-stars {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.rating-stars span {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.testimonial-author p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Newsletter */
.newsletter-container {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-inline: auto;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(47, 93, 140, 0.1);
}

.form-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-green);
    display: none;
}

/* Trending Section */
.trending-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.trending-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.trend-card {
    position: relative;
    min-width: 280px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    will-change: transform;
}

.trend-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

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

.trend-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: var(--bg-white);
    z-index: 2;
}

.trend-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.trend-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.trend-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

/* FAQ Section */
.faq-page {
    min-height: 70vh;
    padding-top: 10rem; /* increase this */
    scroll-margin-top: 6rem; /* or navbar height */
}
.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-question i {
    font-size: 1.4rem;
    color: var(--primary);
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-item.active i {
    transform: rotate(180deg);
}
/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 5rem 5% 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent-yellow);
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations & Interactivity */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

.app-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--bg-white);
}

.app-badge img {
    height: 50px;
    width: auto;
    display: block;
}

.app-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .tall-card,
    .category-card:nth-child(2),
    .category-card:nth-child(3),
    .category-card:nth-child(4),
    .category-card:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 6rem 2rem;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-dark);
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--bg-light);
    }

    .navbar:not(.scrolled) .nav-link {
        color: var(--text-dark);
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-col {
        min-width: 45%;
    }

    .trending-container {
        gap: 1rem;
    }

    .trend-card {
        min-width: 250px;
        height: 350px;
    }

    .trend-overlay h3 {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }

    .faq-simple-item {
        padding: 1.5rem;
    }

    .faq-simple-item h3 {
        font-size: 1.1rem;
    }
}