    :root {
        --primary-color: #d4a574;
        --secondary-color: #2a2a2a;
        --light-color: #f9f7f3;
        --dark-color: #333;
        --text-color: #555;
        --border-color: #eaeaea;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--text-color);
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('https://images.unsplash.com/photo-1615529182904-14819c35db37?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        color: white;
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(212, 165, 116, 0.2), transparent);
        z-index: 1;
    }

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

    .hero-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .hero-btn {
        background-color: var(--primary-color);
        border: none;
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-btn:hover {
        background-color: #c49565;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
    }

    /* Section Styling */
    .section-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
        text-align: center;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background-color: var(--primary-color);
    }

    /* Blog Cards */
    .blog-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
        margin: 0;
        background: white;
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(212, 165, 116, 0.15);
    }

    .card-img-container {
        height: 250px;
        overflow: hidden;
        position: relative;
    }

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

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

    .card-overlay {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--primary-color);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 2;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .card-text {
        color: var(--text-color);
        margin-bottom: 1.5rem;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #777;
    }

    .read-more-btn {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .read-more-btn:hover {
        color: var(--secondary-color);
    }

    .read-more-btn i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .read-more-btn:hover i {
        transform: translateX(5px);
    }

    /* Category Navigation */
    .category-nav {
        background-color: var(--light-color);
        padding: 2rem 0;
        margin: 3rem 0;
    }

    .category-item {
        text-align: center;
        padding: 1rem;
        transition: all 0.3s ease;
    }

    .category-item:hover {
        transform: translateY(-5px);
    }

    .category-icon {
        width: 70px;
        height: 70px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        font-size: 1.5rem;
        color: var(--primary-color);
    }

    .category-name {
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 0.5rem;
    }

    .category-count {
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    /* Featured Section */
    .featured-section {
        background-color: var(--light-color);
        padding: 5rem 0;
        margin: 3rem 0;
    }

    /* Newsletter Section */
    .newsletter-section {
        background: linear-gradient(135deg, var(--secondary-color), #444);
        color: white;
        padding: 5rem 0;
        text-align: center;
    }

    .newsletter-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .newsletter-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .newsletter-form .input-group {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        border-radius: 50px;
        overflow: hidden;
    }

    .newsletter-form input {
        border: none;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .newsletter-form button {
        background-color: var(--primary-color);
        border: none;
        padding: 1rem 2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .newsletter-form button:hover {
        background-color: #c49565;
    }

    /* Stats Section */
    .stats-section {
        padding: 3rem 0;
        background-color: white;
    }

    .stat-item {
        text-align: center;
        padding: 1.5rem;
    }

    .stat-number {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: var(--secondary-color);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

    /* Swiper Slider Styles */
    .swiper {
        width: 100%;
        padding: 20px 10px 60px !important;
        margin: 0 auto;
    }

    .swiper-slide {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
    }

    .swiper-slide > div {
        height: 100%;
        width: 100%;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        color: var(--primary-color);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.1);
    }

    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #ddd;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-color);
        transform: scale(1.2);
    }

    .swiper-pagination {
        bottom: 20px !important;
    }

    /* Slider Container */
    .slider-container {
        position: relative;
        margin-bottom: 2rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .card-img-container {
            height: 220px;
        }
        
        .stat-item {
            margin-bottom: 1.5rem;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            width: 40px;
            height: 40px;
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 1rem;
        }
        
        .swiper {
            padding: 20px 0 50px !important;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-section {
            min-height: 70vh;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .card-img-container {
            height: 200px;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }
    }

    @media (min-width: 1400px) {
        .swiper-slide {
            max-width: 400px;
        }
    }