body {

    margin: 0;

    font-family: 'Open Sans', sans-serif;

    background: #fff;

    color: #2E2E2E;

}



.site-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 1rem 2rem;

    position: sticky;

    top: 0;

    z-index: 10;

    transition: background-color 0.5s ease;

    height: 25px;

}



.site-header.scrolled {

    background-color: #fff;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}



@media screen and (max-width: 768px) {

    .site-header {

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 0.5rem 0.5rem;

        position: sticky;

        top: 0;

        z-index: 10;

        transition: background-color 0.3s ease;

        height: 30px;

    }



}



.site-header.scrolled {

    background: #fff;

    /* or use rgba(...) with blur if desired */

}



.nav-left,

.nav-right a {

    font-family: 'roboto', sans-serif;

    margin: 0 10px;

    text-decoration: none;

    color: #000;

    font-weight: 400;

    letter-spacing: 1px;

    font-size: 0.8rem;

}



/* NAV CENTER BASE */

.nav-center {

    font-family: 'roboto', sans-serif;

    margin: 0 10px;

    text-decoration: none;

    color: #000;

    font-weight: 400;

    letter-spacing: 1px;

    font-size: 0.8rem;

}





.nav-links a {

    font-family: 'roboto', sans-serif;

    color: #000;

    text-decoration: none;

    font-weight: 400;

    letter-spacing: 1px;

    font-size: 0.9rem;

    margin: 0 10px;

}



.nav-links a {

    position: relative;

    font-family: 'Roboto', sans-serif;

    color: #000;

    text-decoration: none;

    font-weight: 400;

    letter-spacing: 1px;

    font-size: 0.9rem;

    margin: 0 10px;

    padding-bottom: 2px;

    /* gives space for underline */

}



.nav-links a::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    height: 2px;

    width: 0;

    background-color: #8D7651;

    /* underline color */

    transition: width 0.3s ease;

}



.nav-links a:hover::after {

    width: 100%;

}









/* HAMBURGER BUTTON */

.hamburger {

    display: none;

    background: none;

    border: none;

    font-size: 1.4rem;

    color: #000;

    cursor: pointer;

    margin-right: 1rem;

}



/* MOBILE STYLES */

@media (max-width: 768px) {

    .nav-center {

        justify-content: flex-end;

    }



    .nav-left {

        color: #000 !important;

    }



    .nav-links {

        display: none;

        position: absolute;

        top: 100%;

        left: 50%;

        /* Center from the left */

        transform: translateX(-50%);

        /* Offset by half the width */

        flex-direction: column;

        background-color: #fff;

        width: 100%;

        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

        padding: 1rem;

        z-index: 1000;

    }



    .nav-links a {

        padding: 0.5rem 0;

        color: #000;

        font-weight: 400;

        text-align: center;

    }



    .hamburger {

        display: block;

    }



    .nav-links.active {

        display: flex;

        gap: 2rem;

    }

}





#hero {

    position: relative;

    height: 100vh;

    overflow: hidden;

    margin-top: -60px;

}



.slide {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh;

    opacity: 0;

    z-index: 0;

    transition: opacity 1s ease-in-out;

    pointer-events: none;

}



.slide.active {

    opacity: 1;

    z-index: 1;

    pointer-events: auto;

}



.slide-bg {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center;

    z-index: 0;

}



.slide-bg.desktop {

    background-image: url('../images/slide1-desktop.jpg');

    background-size: cover;

    background-position: center;

    position: relative;

    z-index: 1;

}



.slide-bg.mobile {

    background-image: url('../images/slide4.jpg');

    background-size: cover;

    background-position: center;

    position: relative;

    z-index: 1;

}



.slide-bg.desktop::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        repeating-linear-gradient(0deg,

            rgba(73, 71, 11, 0.4) 0px,

            rgba(73, 71, 11, 0.4) 1px,

            transparent 1px,

            transparent 20px),

        repeating-linear-gradient(90deg,

            rgba(73, 71, 11, 0.4) 0px,

            rgba(73, 71, 11, 0.4) 1px,

            transparent 1px,

            transparent 20px);



    mask-image: linear-gradient(to top right, white 0%, transparent 25%);

    -webkit-mask-image: linear-gradient(to top right, white 0%, transparent 25%);



    pointer-events: none;

    z-index: 2;

    animation: gridPulse 4s ease-in-out infinite;

}



@keyframes gridPulse {



    0%,

    100% {

        opacity: 0.6;

    }



    50% {

        opacity: 1;

    }

}







.slide-bg.mobile {

    display: none;

}



@media screen and (max-width: 768px) {

    .slide-bg.desktop {

        display: none;

    }



    .slide-bg.mobile {

        display: block;

    }

}





.hero-content {

    position: absolute;

    top: 20%;

    left: 10%;

    color: #21242A;

    background-color: rgba(255, 255, 255, 0.4);

    padding: 1rem 2rem;

    border-radius: 8px;

    max-width: 450px;

    z-index: 1;

}



.hero-content h1 {

    font-size: 3.0rem;

    margin-bottom: 0.5rem;

    opacity: 0;

    transform: translateY(-20px);

    animation: fadeDown 1s ease-out forwards;

    animation-delay: 0.2s;

}



.hero-content h1::after {

    content: "";

    display: block;

    width: 150px;

    height: 4px;

    background-color: #8D7651;

    margin-top: 10px;

    opacity: 0;

    transform: translateX(-50px);

    animation: fadeLeft 1s ease-out forwards;

    animation-delay: 1s;

}



.hero-content p {

    font-size: 1.2rem;

    margin-bottom: 1rem;

    letter-spacing: 1px;

    line-height: 1.5;

    opacity: 0;

    transform: translateY(20px);

    animation: fadeUp 1s ease-out forwards;

    animation-delay: 1.5s;

}



@keyframes fadeDown {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes fadeLeft {

    to {

        opacity: 1;

        transform: translateX(0);

    }

}



@keyframes fadeUp {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}





@media screen and (max-width: 768px) {

    .hero-content {

        position: absolute;

        top: auto;

        bottom: 0;

        left: 50%;

        transform: translateX(-50%);

        background-color: rgba(255, 255, 255, 0.6);

        max-width: 450px;

        padding: 1rem;

        margin-left: 10px;

        margin-right: 10px;

        min-width: 100%

    }



    .hero-content h1 {

        font-size: 2.0rem;

        padding-left: 10px;

        margin-top: 0px;

    }



    .hero-content p {

        font-family: 'Roboto', sans-serif;

        font-size: 0.9rem;

        font-weight: 500;

        padding: 10px;

    }

}



  .cta-primary {

            background: linear-gradient(135deg, #8D7651 0%, #a68c68 100%);

            color: white;

            padding: 16px 32px;

            border: none;

            border-radius: 50px;

            font-size: 1.1rem;

            font-weight: 600;

            text-decoration: none;

            display: inline-flex;

            align-items: center;

            gap: 8px;

            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            box-shadow: 0 4px 20px rgba(141, 118, 81, 0.3);

        }



        .cta-primary:hover {

            transform: translateY(-2px);

            box-shadow: 0 8px 30px rgba(141, 118, 81, 0.4);

            background: linear-gradient(135deg, #a68c68 0%, #8D7651 100%);

        }



        .cta-secondary {

            color: #21242A;

            padding: 16px 24px;

            border: 2px solid rgba(33, 36, 42, 0.2);

            border-radius: 50px;

            font-size: 1.1rem;

            font-weight: 500;

            text-decoration: none;

            display: inline-flex;

            align-items: center;

            gap: 8px;

            transition: all 0.3s ease;

            background: rgba(255, 255, 255, 0.8);

            backdrop-filter: blur(10px);

        }



        .cta-secondary:hover {

            background: rgba(255, 255, 255, 0.95);

            border-color: #8D7651;

            color: #8D7651;

        }



        .hero-actions {

            display: flex;

            gap: 16px;

            flex-wrap: wrap;

            align-items: center;

            opacity: 0;

            transform: translateY(20px);

            animation: fadeUp 1s ease-out forwards;

            animation-delay: 1.2s;

        }



  .trust-indicators {

            margin-top: 40px;

            display: flex;

            gap: 32px;

            flex-wrap: wrap;

            opacity: 0;

            animation: fadeUp 1s ease-out forwards;

            animation-delay: 1.6s;

        }



        .trust-item {

            display: flex;

            align-items: center;

            gap: 8px;

            color: #3a3f47;

            font-size: 0.9rem;

            font-weight: 500;

        }



        .trust-item::before {

            content: "✓";

            color: #8D7651;

            font-weight: bold;

            font-size: 1.1rem;

        }







.reviews-section {

    padding: 4rem 0rem;

    text-align: center;

}



.reviews-section h2 {

    font-size: 3.0rem;

    color: #8D7651;

    opacity: 0;

    transform: translateY(-20px);

    animation: fadeDown 1s ease-out forwards;

    animation-delay: 0.2s;

    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);



}







@media screen and (max-width: 768px) {

    .reviews-section h2 {

        font-size: 1.5rem;

        font-weight: 500;

    }



}



.reviews-section h2::after {

    content: "";

    display: block;

    width: 150px;

    height: 4px;

    background-color: #8D7651;

    margin: 10px auto;

    opacity: 0;

    transform: translateX(-50px);

    animation: fadeLeft 1s ease-out forwards;

    animation-delay: 1s;

}



.review-cards {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 2rem;

}



.review-box {

    background: #fff;

    border-radius: 16px;

    padding: 1rem;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

    max-width: 320px;

    text-align: center;

    transition: transform 0.3s ease;

    border: solid 1px #8D7651;

}



.review-box:hover {

    transform: translateY(-5px);

}



.review-img {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 1rem;

}



.review-name {

    font-size: 1.2rem;

    font-weight: 600;

    margin-bottom: 0.5rem;

}



.review-stars {

    color: #FFD700;

    font-size: 1.2rem;

    margin-bottom: 1rem;

}



.review-text {

    font-size: 0.95rem;

    color: #555;

    line-height: 1.5;

}



.review-button-container {

    margin-top: 2rem;

    text-align: center;

}



.read-more-btn {

    display: inline-block;

    background-color: #8D7651;

    color: #fff;

    padding: 0.75rem 1.5rem;

    font-size: 1rem;

    border-radius: 8px;

    text-decoration: none;

    transition: background-color 0.3s ease;

}



.read-more-btn:hover {

    background-color: #6e5c3f;

}







/* Premium Responsive Adjustments */

@media (max-width: 768px) {

    .about-earthy {

        padding: 4rem 1rem;

    }



    .about-container {

        flex-direction: column;

        text-align: center;

        gap: 3rem;

    }



    .about-text {

        max-width: 100%;

    }



    .about-text h2 {

        font-size: 2.5rem;

    }



    .about-image {

        width: 280px;

        height: 280px;

        margin-bottom: 1rem;

        transform: none;

    }



    .bg-circle {

        width: 320px;

        height: 320px;

        top: -20px;

        left: -20px;

    }



    .about-features {

        grid-template-columns: 1fr;

        gap: 2rem;

    }



    .feature-box {

        padding: 2.5rem 2rem;

    }



    .feature-box h3 {

        font-size: 3rem;

    }

}



/* Loading animation for page entry */

.about-earthy {

    opacity: 0;

    animation: sectionFadeIn 1.5s ease-out forwards;

}



@keyframes sectionFadeIn {

    to {

        opacity: 1;

    }

}



.site-footer {

    background-color: #161A33;

    /* Compliments #11162E */

    color: #fff;

    padding: 3rem 2rem 1rem;

    font-size: 0.95rem;

    border-top: 1px solid #fff;

    /* White top border */

}





.footer-container {

    justify-content: center;

    display: flex;

    flex-wrap: wrap;

    gap: 2rem;

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 1rem;

}





.footer-col {

    flex: 1 1 250px;

}



.footer-col h4 {

    font-size: 1.2rem;

    margin-bottom: 1rem;

    color: #8D7651;

}



.footer-col p,

.footer-col a {

    font-family: 'Roboto', sans-serif;

    font-size: 0.9rem;

    line-height: 1.5;

    font-weight: 400;

    letter-spacing: 1.0;

    color: #ccc;

    text-decoration: none;

}



.footer-col a:hover {

    color: #8D7651;

    text-decoration: underline;

}



.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-links li {

    margin-bottom: 0.5rem;

}



.footer-bottom {

    text-align: center;

    margin-top: 2rem;

    font-size: 0.85rem;

    color: #aaa;

    border-top: 1px solid #333;

    padding-top: 1rem;

}



.footer-bottom a {

    color: #fff;

    text-decoration: none;

    letter-spacing: 1px;

}



.video-section {

    background: #f5f5f5;

    padding: 4rem 1rem;

    text-align: center;

}



.video-section h2 {

    font-family: 'roboto', sans-serif;

    color: #8D7651;

    font-size: 3.0rem;

    margin-bottom: 0.5rem;

    opacity: 0;

    transform: translateY(-20px);

    animation: fadeDown 1s ease-out forwards;

    animation-delay: 0.2s;

    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);



}



.video-section h2::after {

    content: "";

    display: block;

    width: 150px;

    height: 4px;

    background-color: #8D7651;

    margin: 10px auto;

    margin-bottom: 25px;

    opacity: 0;

    transform: translateX(-50px);

    animation: fadeLeft 1s ease-out forwards;

    animation-delay: 1s;

}



.video-container {

    max-width: 1600px;

    margin: 0 auto;

}



.video-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;

    overflow: hidden;

}





/* On smaller screens: convert to horizontal scroll */

@media screen and (max-width: 1024px) {

    .video-grid {

        display: flex;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        padding-bottom: 1rem;

    }



    .video-item {

        flex: 0 0 80%;

        max-width: 400px;

        margin-right: 1rem;

        scroll-snap-align: start;

    }



    .video-section h2 {

        font-size: 1.5rem;

        font-weight: 500;

        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);



    }

}



.slide-hint {

    display: none;

}



@media screen and (max-width: 768px) {

    .slide-hint {

        display: block;

        text-align: center;

        margin-top: 1rem;

        font-family: 'Arial', sans-serif;

        font-size: 1rem;

        color: #333;

        animation: fadeIn 1.5s ease-in-out;

    }



    .slide-hint .arrows {

        display: inline-block;

        margin-left: 0.5rem;

    }



    .slide-hint .arrow {

        display: inline-block;

        font-size: 1.2rem;

        margin: 0 2px;

        opacity: 0;

        animation: slideArrow 1.2s infinite;

    }



    .slide-hint .arrow:nth-child(1) {

        animation-delay: 0s;

    }



    .slide-hint .arrow:nth-child(2) {

        animation-delay: 0.2s;

    }



    .slide-hint .arrow:nth-child(3) {

        animation-delay: 0.4s;

    }

}



@keyframes slideArrow {



    0%,

    100% {

        opacity: 0;

        transform: translateX(0);

    }



    50% {

        opacity: 1;

        transform: translateX(5px);

    }

}



@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(10px);

    }



    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* About Section Styles */

.about-section {

    position: relative;

    padding: 80px 0;

    background: linear-gradient(135deg, #8D7651 0%, #8D7651 100%);

    color: white;

    overflow: hidden;

}



.about-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        repeating-linear-gradient(0deg,

            rgba(73, 71, 11, 0.4) 0px,

            rgba(73, 71, 11, 0.4) 1px,

            transparent 1px,

            transparent 20px),

        repeating-linear-gradient(90deg,

            rgba(73, 71, 11, 0.4) 0px,

            rgba(73, 71, 11, 0.4) 1px,

            transparent 1px,

            transparent 20px);



    /* Mask from top-left (45deg angle) */

    mask-image: linear-gradient(to bottom right, white 0%, transparent 25%);

    -webkit-mask-image: linear-gradient(to bottom right, white 0%, transparent 25%);



    pointer-events: none;

    z-index: 2;

    animation: gridPulse 4s ease-in-out infinite;

}





.about-container {

    display: flex;

    align-items: center;

    gap: 60px;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



.about-image {

    flex: 1;

    position: relative;

}



.about-image img {

    width: 100%;

    height: 400px;

    object-fit: cover;

    border-radius: 15px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    transition: transform 0.3s ease;

}



.about-image img:hover {

    transform: scale(1.02);

}



.about-text {

    flex: 1;

}



.about-text h2 {

    font-family: 'roboto', sans-serif;

    font-size: 2.8rem;

    letter-spacing: 1px;

    margin-bottom: 30px;

    font-weight: 700;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}



.about-text h2::after {

    content: '';

    display: block;

    width: 100px;

    height: 4px;

    background: #fff;

    margin-top: 10px;

    border-radius: 2px;

}



@media screen and (max-width: 768px) {

    .about-text h2::after {

        margin-left: auto;

        margin-right: auto;

    }

}





.about-text p {

    font-family: 'roboto', sans-serif;

    font-size: 1.0rem;

    line-height: 1.5;

    letter-spacing: 1px;

    opacity: 0.95;

}



/* Services Section Styles */

.services-section {

    padding: 100px 0;

    background: #ffffff;

}



.services-content {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



.section-header {

    text-align: center;

    margin-bottom: 80px;

}



.section-title {

    font-family: 'roboto', sans-serif;

    letter-spacing: 1px;

    font-size: 3rem;

    color: #8D7651;

    margin-bottom: 20px;

    font-weight: 700;

}



.section-title::after {

    content: '';

    display: block;

    width: 100px;

    height: 4px;

    background: #8D7651;

    margin: 10px auto;

    border-radius: 2px;

}



.section-subtitle {

    font-family: 'roboto', sans-serif;

    letter-spacing: 1px;

    font-size: 1.3rem;

    color: #666;

    max-width: 600px;

    margin: 0 auto;

    line-height: 1.7;

}



.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 40px;

    margin-bottom: 80px;

}



.service-card {

    background: #fff;

    padding: 40px 30px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.1);

    transition: all 0.3s ease;

    border: 1px solid #8D7651;

    position: relative;

    overflow: hidden;

}



.service-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 5px;

    background: linear-gradient(90deg, #8D7651, #8D7651);

    transform: scaleX(0);

    transition: transform 0.3s ease;

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(44, 85, 48, 0.2);

    border-color: #8D7651;

}



.service-card:hover::before {

    transform: scaleX(1);

}



.service-icon {

    width: 80px;

    height: 80px;

    background: linear-gradient(135deg, #8D7651, #8D7651);

    border-radius: 50%;

    margin: 0 auto 30px;

    position: relative;

    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);

}



.service-icon::after {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 40px;

    height: 40px;

    background: white;

    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E") center/contain no-repeat;

}



.service-title {

    font-size: 1.5rem;

    color: #8D7651;

    margin-bottom: 20px;

    text-align: center;

    font-weight: 600;

}



.service-description {

    color: #666;

    line-height: 1.7;

    text-align: center;

}



.cta-section {

    background: linear-gradient(135deg, #8D7651, #8D7651);

    color: white;

    padding: 50px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(44, 85, 48, 0.3);

}



.emergency-notice {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 20px;

    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);

}



.service-areas {

    font-size: 1.1rem;

    opacity: 0.9;

    font-style: italic;

}



/* Responsive Design */

@media (max-width: 768px) {

    .about-container {

        flex-direction: column;

        gap: 40px;

        text-align: center;

    }



    .about-text h2 {

        font-size: 1.5rem;

    }



    .section-title {

        font-size: 2.2rem;

    }



    .services-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }



    .cta-section {

        padding: 30px 20px;

    }



    .emergency-notice {

        font-size: 1.2rem;

    }

}



/* Animation for service cards */

.service-card {

    opacity: 0;

    transform: translateY(30px);

    animation: slideUp 0.6s ease forwards;

}



.service-card:nth-child(1) {

    animation-delay: 0.1s;

}



.service-card:nth-child(2) {

    animation-delay: 0.2s;

}



.service-card:nth-child(3) {

    animation-delay: 0.3s;

}



.service-card:nth-child(4) {

    animation-delay: 0.4s;

}



@keyframes slideUp {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* Header for context */

.header {

    background: linear-gradient(135deg, #1a3d1f, #2c5530);

    color: white;

    padding: 20px 0;

    text-align: center;

}



.header h1 {

    font-size: 2.5rem;

    margin-bottom: 10px;

}



.header p {

    font-size: 1.1rem;

    opacity: 0.9;

}

/* Coffee Section Styles */
.coffee-section {
    padding: 20px 0;
    background: #ffffff;
    overflow: hidden;
}

.coffee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coffee-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.coffee-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.coffee-content {
    padding: 60px 50px 60px 20px;
}

.coffee-title {
    font-size: 2.5rem;
    color: #2E2E2E;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.coffee-intro {
    font-size: 1.2rem;
    color: #8D7651;
    margin-bottom: 20px;
    font-weight: 500;
}

.coffee-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.coffee-description strong {
    color: #8D7651;
    font-weight: 600;
}

.coffee-includes {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #8D7651;
}

.coffee-includes h3 {
    font-size: 1.3rem;
    color: #2E2E2E;
    margin-bottom: 15px;
    font-weight: 600;
}

.coffee-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coffee-includes ul li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.coffee-includes ul li i {
    color: #8D7651;
    font-size: 1.2rem;
}

.coffee-shipping {
    background: #fff9f0;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid #ffe4c4;
}

.coffee-shipping h3 {
    font-size: 1.3rem;
    color: #2E2E2E;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coffee-shipping h3 i {
    color: #8D7651;
}

.coffee-shipping p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.coffee-shipping p strong {
    color: #2E2E2E;
    font-weight: 600;
}

.coffee-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.coffee-btn-primary,
.coffee-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.coffee-btn-primary {
    background: linear-gradient(135deg, #8D7651 0%, #6b5838 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(141, 118, 81, 0.3);
}

.coffee-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(141, 118, 81, 0.4);
}

.coffee-btn-secondary {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.coffee-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    background: #20ba5a;
}

/* Responsive Design for Coffee Section */
@media screen and (max-width: 968px) {
    .coffee-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .coffee-image {
        min-height: 400px;
        order: 1;
    }
    
    .coffee-content {
        order: 2;
        padding: 40px 30px;
    }
    
    .coffee-title {
        font-size: 2rem;
    }
    
    .coffee-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .coffee-btn-primary,
    .coffee-btn-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .coffee-section {
        padding: 40px 10px;
    }
    
    .coffee-content {
        padding: 30px 20px;
    }
    
    .coffee-title {
        font-size: 1.6rem;
    }
    
    .coffee-intro {
        font-size: 1.05rem;
    }
    
    .coffee-description {
        font-size: 1rem;
    }
    
    .coffee-includes,
    .coffee-shipping {
        padding: 20px;
    }
    
    .coffee-btn-primary,
    .coffee-btn-secondary {
        max-width: 100%;
    }
}

@media screen and (max-width: 468px) {
    .coffee-section {
        padding: 30px 10px;
    }
    
    .coffee-container {
        padding: 0 15px;
    }
    
    .coffee-content {
        padding: 25px 15px;
    }
    
    .coffee-image {
        min-height: 300px;
    }
    
    .coffee-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .coffee-intro {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .coffee-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .coffee-includes {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .coffee-includes h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .coffee-includes ul li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .coffee-includes ul li i {
        font-size: 1rem;
    }
    
    .coffee-shipping {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .coffee-shipping h3 {
        font-size: 1.1rem;
    }
    
    .coffee-shipping p {
        font-size: 0.9rem;
    }
    
    .coffee-cta {
        padding: 0 10px;
    }
    
    .coffee-btn-primary,
    .coffee-btn-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: auto;
        min-width: 200px;
        max-width: 280px;
    }
}
