:root {
    --primary-blue: #BBE1FA;
    --bg-blue: #A8D8FF;
    --accent-orange: #FF8C00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --card-bg-dark: #2C2C3E;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-primary {
    background-color: #4A90E2;
    color: white;
    border: none;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 15px;
}

.btn-orange {
    background-color: var(--accent-orange);
    color: white;
    border-radius: 4px;
    padding: 12px 25px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-text {
    color: var(--accent-orange);
    /* Changed to orange based on screenshots */
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: auto;
    /* Push to bottom of flex container */
    display: inline-block;
}

.btn-orange-small {
    background-color: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 15px;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 100;
    color: white;
    /* Assuming white text on hero */
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    margin-bottom: 50px;
}

.scroll-down {
    animation: bounce 2s infinite;
    opacity: 0.8;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about-section {
    background-color: var(--bg-blue);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-header {
    margin-bottom: 20px;
}

.section-header .line {
    width: 60px;
    height: 4px;
    background-color: #4A90E2;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1rem;
    color: #444;
}

/* Features Section */
.features-section {
    background-image: url('assets/images/features_background.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: var(--text-dark);
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 140, 0, 0.1);  Corrected overlay approach */
    /* Actually looks like a blurred image background passed through, let's keep it clean or add a semi-transparent orange tint */
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    /* Placeholder */
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title-center h2 {
    font-size: 2.5rem;
    color: #333;
    /* Dark text on light/blurred background */
    margin-bottom: 15px;
}

.section-title-center p {
    color: #666;
}

.features-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    width: calc(25% - 20px);
    min-width: 250px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    /* Equal height */
}

.feature-card .icon {
    color: #4A90E2;
    /* Blue icons */
    margin-bottom: 20px;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.4;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-blue);
    padding: 80px 0;
    text-align: center;
}

.stats-desc {
    max-width: 800px;
    margin: 20px auto 50px;
    color: #444;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-card {
    background-color: var(--card-bg-dark);
    color: white;
    padding: 40px 20px;
    border-radius: 12px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 0.8rem;
    color: #4A90E2;
    /* Blue accent text */
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Products Showcase */
.products-section {
    background-image: url('assets/images/dark_strawberry_background.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay */
}

.container-products {
    position: relative;
    z-index: 2;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    color: #333;
    padding: 40px 20px;
    width: 250px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card.highlight {
    transform: scale(1.05);
    /* Slight pop/border for highlighted item if needed */
    border: 2px solid var(--primary-blue);
    /* Just a guess, or shadow */
}

.icon-small {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: auto;
}

/* Footer / FAQ */
.footer-section {
    background-color: #2C2C3E;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.small-title {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-preview {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    width: 45%;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: #BBE1FA;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-icon {
        display: block;
        /* Need to add styles for this */
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }

    .mobile-menu-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: white;
        margin-bottom: 6px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-container {
        flex-direction: column;
    }

    .features-grid,
    .stats-grid,
    .products-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-card,
    .stat-card,
    .product-card {
        width: 100%;
        max-width: 350px;
    }

    .faq-preview {
        flex-direction: column;
        gap: 30px;
    }

    .faq-item {
        width: 100%;
    }
}

/* Contact Page Styles */
.navbar-dark {
    position: relative;
    background-color: #2C3E50;
    /* Fallback/Solid for subpages */
    padding: 15px 50px;
}

.product-card.highlight {
    transform: scale(1.05);
    /* Slight pop/border for highlighted item if needed */
    border: 3px solid var(--accent-orange);
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-hero {
    background-color: var(--primary-blue);
    /* Based on screenshot 1 background */
    padding: 60px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle, #8dc6f5 0%, #6baed6 100%);
}

.hero-logo-placeholder {
    color: #fff;
}

.hero-logo-placeholder .waffle-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
}

.hero-logo-placeholder h1 {
    font-family: 'Brush Script MT', cursive;
    /* Mimic the script font in logo */
    font-size: 3rem;
    color: #F4D03F;
    /* Gold/Yellow part of logo */
    text-shadow: 2px 2px 0px #000;
}

/* Split Section */
.contact-split-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 20px;
    /* Rounded corners as seen in screenshot */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.2;
}

.contact-intro {
    margin-bottom: 40px;
    color: #555;
    font-size: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.icon-circle {
    background-color: #2C2C3E;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info p {
    margin: 0;
    font-weight: 500;
    color: #444;
    padding-top: 8px;
    /* align with icon */
}

/* CTA Strip */
.cta-strip {
    background-color: #A8D8FF;
    /* Light blue strip from screenshot 3 */
    padding: 60px 0;
    text-align: center;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.cta-strip h2 {
    color: white;
    font-size: 2.2rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }
}

/* About Page Specifics */
.section-subtitle {
    color: #4A90E2;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    flex: 1;
    padding-right: 50px;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.story-content p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
}

/* Success Section */
.success-section {
    background-color: #2C2C3E;
    color: white;
    padding: 100px 0;
}

.success-content {
    flex: 1;
    padding-right: 50px;
}

.success-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-content p {
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.success-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.success-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.s-feature h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1rem;
}

.s-feature p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.highlight-box {
    border: 1px solid white;
    padding: 15px;
    border-radius: 4px;
}

.highlight-box p {
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #BBE1FA;
}

.gallery-header {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    max-width: 500px;
}

.gallery-header p {
    max-width: 400px;
    font-size: 0.9rem;
    color: #444;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: white;
}

.founder-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.founder-content {
    flex: 2;
}

.founder-content h2 {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 20px;
}

.founder-bio {
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.founder-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.founder-image {
    flex: 1;
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .founder-container {
        flex-direction: column-reverse;
    }
}

/* Franchise Page Styles */
.page-title-section {
    padding: 80px 0 40px;
    text-align: center;
}

.page-title-section h1 {
    font-size: 2.8rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Franchise Models */
.franchise-models-section {
    padding: 60px 0;
    background-color: var(--primary-blue);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.franchise-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    height: 350px;
    /* Fixed height for image area initially - simplified approach */
}

/* 
   Note: The screenshot shows specific hover/info cards. 
   Implementing a simplified version where the image matches the card style 
*/
.franchise-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.f-card-content {
    background: transparent;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2C3E50;
}

.f-card-content h3 {
    font-size: 1.2rem;
    color: #2C3E50;
}

.arrow-link {
    font-size: 1.5rem;
    color: #4A90E2;
}

/* Hover Info Card imitation from screenshot 3 (blue card with icons) */
.f-card-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(187, 225, 250, 0.95);
    /* Semi-transparent blue */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
}

.franchise-card:hover .f-card-hover-info {
    opacity: 1;
}

.icon-orange {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.f-card-hover-info h4 {
    margin-bottom: 10px;
    color: #2C3E50;
}

.f-card-hover-info p {
    font-size: 0.9rem;
    color: #444;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: white;
}

.menu-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for menu items */
    gap: 15px;
    margin: 50px 0;
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
}

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

.btn-wide {
    padding: 15px 50px;
    font-size: 1rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonial-container {
    display: flex;
    align-items: center;
    gap: 50px;
    border: 1px solid #4A90E2;
    padding: 0;
    /* Removing padding to let border surround content if needed, but styling broadly */
    border-radius: 4px;
    /* Slight border radius */
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    /* For image matching */
}

/* Actually screenshot shows content inside a border box, image left */
.testimonial-container {
    border: 1px solid #BBE1FA;
    padding: 0;
}

.testimonial-image {
    width: 40%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    width: 60%;
    padding: 40px;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 40px;
}

.testimonial-item {
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.author-info h4 {
    margin: 0;
    color: #333;
}

.stars {
    color: gold;
    font-size: 0.9rem;
}

.quote {
    color: #555;
    font-style: italic;
    font-size: 0.95rem;
}

@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-image,
    .testimonial-content {
        width: 100%;
    }
}

/* Blog Page Styles */

.blog-hero {
    background-color: #F0F8FF;
    /* Light Alice Blue */
}

.blog-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.blog-cat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.read-more:hover {
    color: #2980b9;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.pagination a.active,
.pagination a:hover {
    background: var(--primary-blue);
    color: white;
}

.pagination a:last-child {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--text-dark);
    color: white;
    background-image: linear-gradient(rgba(44, 44, 62, 0.9), rgba(44, 44, 62, 0.9)), url('assets/images/hero_background.webp');
    background-size: cover;
    background-position: center;
}

.newsletter-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-section p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 30px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 30px;
    padding: 15px 30px;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form button {
        width: 100%;
    }
}