/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d2d2d;
    letter-spacing: 1px;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d2d2d;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #6b9b37;
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
}

.nav-actions a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-actions a:hover {
    color: #6b9b37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Search Box Styles */
.search-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.search-container.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-container.active .search-box {
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 1.5rem 5rem 1.5rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 40px;
    outline: none;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: #6b9b37;
}

.search-btn {
    cursor: pointer;
}

/* Product Hero Section */
.product-hero {
    background-color: #f8f8f8;
    padding: 8rem 0 4rem;
    text-align: center;
}

.product-hero .hero-title {
    font-size: 4rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.product-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 1px;
}

/* Product List Section */
.product-list {
    padding: 4rem 0;
    background-color: #fff;
}

.product-list-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

/* Sidebar */
.sidebar {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 4px;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-family: 'Playfair Display', serif;
}

.filter-options {
    list-style: none;
}

.filter-options li {
    margin-bottom: 0.5rem;
}

.filter-options a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.filter-options a:hover, .filter-options a.active {
    color: #6b9b37;
}





/* Products Grid */
.products-content .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

/* Product Detail Styles */
.product-detail {
    padding: 6rem 0;
    background-color: #fff;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image {
    border-radius: 4px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.02);
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-images img:hover, .thumbnail-images img.active {
    opacity: 0.8;
    border-color: #6b9b37;
}

/* Product Info */
.product-info {
    padding: 0 1rem;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.detail-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: #f8f8f8;
    color: #6b9b37;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #6b9b37;
    margin-bottom: 1rem;
    display: block;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #ffc107;
}

.product-rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d2d2d;
}

.quantity-select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100px;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.add-to-cart {
    background-color: #2d2d2d;
    color: #fff;
    border: none;
    min-width: 180px;
}

.add-to-cart:hover {
    background-color: #6b9b37;
}

.wishlist-btn, .share-btn {
    background-color: #f8f8f8;
    color: #333;
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover, .share-btn:hover {
    background-color: #e8e8e8;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    gap: 1rem;
}

.meta-label {
    font-weight: 500;
    color: #2d2d2d;
    min-width: 80px;
}

.meta-value {
    color: #666;
}

/* Product Tabs */
.product-tabs-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.product-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #f0f0f0;
    color: #6b9b37;
}

.tab-btn.active {
    background-color: #6b9b37;
    color: #fff;
    border-color: #6b9b37;
}

.tab-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0 4px 4px 4px;
    border: 1px solid #ddd;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.tab-panel p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Specifications List */
.specifications-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.specifications-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.specifications-list li:last-child {
    border-bottom: none;
}


/* Product Description Section */
.product-description-section {
    padding: 5rem 0;
    background-color: transparent;
    border-radius: 4px;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-description-section .container {
    max-width: 800px;
}

.product-description-section h3 {
    font-size: 2rem;
    color: #2d2d2d;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.product-description-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6b9b37;
    border-radius: 2px;
}

.product-description-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.product-description-section p:last-child {
    margin-bottom: 0;
}

/* Related Products */
.related-products {
    padding: 6rem 0;
    background-color: #fff;
}

.related-products .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.page-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.page-btn:hover, .page-btn.active {
    background-color: #6b9b37;
    color: #fff;
    border-color: #6b9b37;
}

.page-btn.prev, .page-btn.next {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-content .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-list-content {
        grid-template-columns: 1fr;
    }
    
    /* Product Detail Responsive */
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        order: 1;
        padding: 1.5rem;
    }
    
    .sidebar .filter-group {
        margin-bottom: 0;
    }
    
    .sidebar .filter-options {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }
    
    .sidebar .filter-options li {
        margin-bottom: 0;
    }
    
    .products-content {
        order: 2;
    }
    
    .products-content .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Related Products Responsive */
    .related-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-hero .hero-title {
        font-size: 3rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .products-content .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Product Detail Responsive */
    .product-detail-content {
        padding: 0 1rem;
    }
    
    /* Related Products Responsive */
    .related-products .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .pagination {
        gap: 0.25rem;
    }
    
    .page-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

/* Active Navigation Link */
.nav-links a.active {
    color: #6b9b37;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

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

.hero-title {
    font-size: 8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Categories */
.categories {
    padding: 6rem 0;
    background-color: #fff;
}

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

.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.category-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-name {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.category-name:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Season Picks */
.season-picks {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

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

.product-item {
    text-align: center;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

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

.product-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}



.product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.product-price {
    font-weight: 600;
    color: #2d2d2d;
    font-size: 1.1rem;
}

/* Featured Products */
.featured-products {
    padding: 6rem 0;
    background-color: #fff;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.product-large, .product-medium {
    position: relative;
    overflow: hidden;
}

.product-large img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-medium img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-large:hover img, .product-medium:hover img {
    transform: scale(1.05);
}

.product-large .product-info, .product-medium .product-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.product-large .product-category, .product-medium .product-category {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.product-large .product-info .product-name, .product-medium .product-info .product-name {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

/* Quality Section */
.quality {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.quality-item {
    padding: 2rem;
}

.quality-icon {
    font-size: 2.5rem;
    color: #6b9b37;
    margin-bottom: 1.5rem;
}

.quality-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.quality-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* About Page Section */
.about-page {
    padding: 6rem 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #2d2d2d;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: 1px solid #2d2d2d;
}

.btn:hover {
    background-color: transparent;
    color: #2d2d2d;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

/* Tradition Section */
.tradition {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

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

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

.tradition-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.tradition-name {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.tradition-price {
    display: block;
    font-weight: 600;
    color: #6b9b37;
}

/* Instagram Section */
.instagram {
    padding: 6rem 0;
    background-color: #fff;
}

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

.instagram-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-grid img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: #2d2d2d;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #6b9b37;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #6b9b37;
}

.newsletter {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    font-size: 0.9rem;
}

.newsletter button {
    padding: 0.8rem 1.5rem;
    background-color: #6b9b37;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.newsletter button:hover {
    background-color: #5a842e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-large img {
        height: 400px;
    }
    
    .quality-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .tradition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hamburger Menu Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-item img {
        height: 150px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-large img {
        height: 300px;
    }
    
    .product-medium img {
        height: 200px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .tradition-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .newsletter {
        flex-direction: column;
    }
}