nav.breadcrumb.breadcrumb_margin {
    display: none;
}

.coffee-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.coffee-about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("https://demo.ninhweb.site/shopify-coffee/hero.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.coffee-about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.coffee-about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.coffee-about-hero-text {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.coffee-about-hero-text h1 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.coffee-about-hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: white;
}

/* Why Section */
.coffee-about-why-section {
    padding: 100px 0;
    background-color: white;
}

.coffee-about-why-section h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    font-weight: 500;
}

.coffee-about-why-section .coffee-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.coffee-about-why-section .coffee-about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    color: #555;
}

/* Story Section */
.coffee-about-working {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.coffee-about-working .coffee-about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coffee-about-working .coffee-about-story-image video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coffee-about-working .coffee-about-story-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 500;
}

.coffee-about-working .coffee-about-story-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
}

/* Mission Section */
.coffee-about-philosophy {
    padding: 100px 0;
    background-color: white;
}

.coffee-about-philosophy h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    font-weight: 500;
}

.coffee-about-philosophy .coffee-about-mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.coffee-about-philosophy .coffee-about-mission-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    color: #555;
}

/* Team Section */
.coffee-about-experiments {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.coffee-about-experiments .coffee-about-team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coffee-about-experiments .coffee-about-team-image {
    order: 2;
}

.coffee-about-experiments .coffee-about-team-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coffee-about-experiments .coffee-about-team-text {
    order: 1;
}

.coffee-about-experiments .coffee-about-team-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 500;
}

.coffee-about-experiments .coffee-about-team-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .coffee-about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .coffee-about-hero-text {
        padding: 20px 40px;
        margin-top: 50px;
    }
    .coffee-about-hero-text h1 {
        font-size: 40px;
    }

    .coffee-about-hero-text p {
        font-size: 16px;
    }

    .coffee-about-why-section h2 {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .coffee-about-why-section .coffee-about-content p {
        font-size: 16px;
        text-align: left;
    }

    .coffee-about-working .coffee-about-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coffee-about-working .coffee-about-story-text h2 {
        font-size: 32px;
    }

    .coffee-about-working .coffee-about-story-text p {
        text-align: left;
    }

    .coffee-about-philosophy h2 {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .coffee-about-philosophy .coffee-about-mission-content p {
        font-size: 16px;
        text-align: left;
    }

    .coffee-about-experiments .coffee-about-team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coffee-about-experiments .coffee-about-team-image {
        order: 1;
    }

    .coffee-about-experiments .coffee-about-team-text {
        order: 2;
    }

    .coffee-about-experiments .coffee-about-team-text h2 {
        font-size: 32px;
    }

    .coffee-about-experiments .coffee-about-team-text p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .coffee-about-container {
        padding: 0 15px;
    }

    .coffee-about-hero,
    .coffee-about-why-section,
    .coffee-about-working,
    .coffee-about-philosophy,
    .coffee-about-experiments {
        padding: 40px 0;
    }
}