:root {
    /* Color Palette */
    --color-primary: #D4AF37;
    /* Gold */
    --color-primary-light: #F4E5BE;
    --color-secondary: #1A1A1A;
    /* Deep Black */
    --color-text: #333333;
    --color-text-light: #777777;
    --color-background: #FFFFFF;
    --color-background-alt: #F9F9F9;
    --color-accent: #E8B4B8;
    /* Soft Rose */

    /* Typography */
    --font-heading: 'Rubik', sans-serif;
    /* Better for Hebrew */
    --font-body: 'Rubik', sans-serif;
    /* Better for Hebrew */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 8px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 2000;
    border-top: 3px solid var(--color-primary);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    /* Enforce RTL */
    text-align: right;
    /* Default align right */
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    color: var(--color-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: table;
    /* Center trick for RTL/LTR neutral */
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: var(--spacing-xs) auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border: 2px solid var(--color-secondary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-secondary);
}

/* Header */
#main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    right: 0;
    /* Changed from left: 0 to correct RTL intuition, though width 100% handles it */
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

#main-nav ul {
    display: flex;
    gap: var(--spacing-md);
}

#main-nav a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

#main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    /* Align to right for RTL */
    background-color: var(--color-primary);
    transition: var(--transition);
}

#main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1596462502278-27bfdd403348?q=80&w=3270&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Adjusted min-width for mobile */
    gap: var(--spacing-md);
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    /* RTL alignment */
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: var(--spacing-md);
    color: #fff;
    text-align: right;
}

.category-overlay h3 {
    font-size: 1.5rem;
    color: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: var(--spacing-sm);
    text-align: center;
    /* Center align looks good for products usually */
}

.product-category {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.product-price {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--color-secondary);
    color: #fff;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.footer-links h3,
.footer-social h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    font-size: 0.9rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    #main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        margin-right: auto;
        /* Push to left in RTL if logo is right */
        margin-left: 0;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    /* Left in LTR, Right in RTL visual usually, but let's stick to standard corner */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Adjusted min-width for mobile */
    gap: var(--spacing-md);
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    /* RTL alignment */
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: var(--spacing-md);
    color: #fff;
    text-align: right;
}

.category-overlay h3 {
    font-size: 1.5rem;
    color: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: var(--spacing-sm);
    text-align: center;
    /* Center align looks good for products usually */
}

.product-category {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.product-price {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--color-secondary);
    color: #fff;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.footer-links h3,
.footer-social h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    font-size: 0.9rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    #main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        margin-right: auto;
        /* Push to left in RTL if logo is right */
        margin-left: 0;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    /* Left in LTR, Right in RTL visual usually, but let's stick to standard corner */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Adjusted min-width for mobile */
    gap: var(--spacing-md);
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    /* RTL alignment */
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: var(--spacing-md);
    color: #fff;
    text-align: right;
}

.category-overlay h3 {
    font-size: 1.5rem;
    color: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: var(--spacing-sm);
    text-align: center;
    /* Center align looks good for products usually */
}

.product-category {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.product-price {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--color-secondary);
    color: #fff;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.footer-links h3,
.footer-social h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    font-size: 0.9rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    #main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        margin-right: auto;
        /* Push to left in RTL if logo is right */
        margin-left: 0;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    /* Left in LTR, Right in RTL visual usually, but let's stick to standard corner */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* AdSense Placeholder */
.ad-container-wrapper {
    padding-top: 120px;
    /* Clear fixed header */
    margin-bottom: var(--spacing-sm);
    text-align: center;
    position: relative;
    z-index: 10;
}

.ad-placeholder {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    height: 90px;
    /* Standard leaderboard height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-content p {
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: var(--spacing-md);
    border-radius: var(--radius);
    height: fit-content;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-info h3 {
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

/* Article Page */
.full-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: var(--spacing-md);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

/* Telegram Section */
.telegram-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.telegram-subtitle {
    font-size: 1.2rem;
    color: var(--color-primary-light);
    margin-top: -1rem;
}

.telegram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
}

.telegram-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
    padding: var(--spacing-md);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.telegram-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.telegram-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.telegram-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.telegram-card p {
    color: #ccc;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.btn-telegram {
    background-color: var(--color-primary);
    color: #000;
    width: 100%;
    margin-top: auto;
    border: none;
}

.btn-telegram:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Floating Back Button */
.floating-back-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.floating-back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.telegram-card {
    /* opacity: 0; removed for fail-safe visibility */
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggered Delays */
.telegram-card:nth-child(1) {
    animation-delay: 0.1s;
}

.telegram-card:nth-child(2) {
    animation-delay: 0.2s;
}

.telegram-card:nth-child(3) {
    animation-delay: 0.3s;
}

.telegram-card:nth-child(4) {
    animation-delay: 0.4s;
}

.telegram-card:nth-child(5) {
    animation-delay: 0.5s;
}

.telegram-header {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* About Page */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: center;
}

.about-img {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.text-block {
    flex: 1;
    min-width: 300px;
    font-size: 1.1rem;
}

.text-block p {
    margin-bottom: var(--spacing-sm);
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-info {
    padding: var(--spacing-sm);
}

.blog-info h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.blog-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

/* FAQ Page */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

.faq-item h3 {
    color: var(--color-primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}