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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C1810;
    background-color: #FFFDF5;
    overflow-x: hidden;
}

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

.header {
    background: #FFFDF5;
    box-shadow: 0 2px 10px rgba(44, 24, 16, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2C1810;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8B4513;
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.burger span {
    width: 100%;
    height: 3px;
    background: #2C1810;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: absolute;
    left: 0;
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger span:nth-child(3) {
    bottom: 0;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #8B4513;
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
    background: #8B4513;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F5F0E6 0%, #E8DFD0 100%);
}

.hero-content {
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #654321;
}

.btn-primary {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #654321;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

.featured-products {
    padding: 80px 0;
    background: #FFFDF5;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C1810;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.product-card p {
    color: #654321;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #8B4513;
}

.story-section {
    padding: 80px 0;
    background: #F5F0E6;
}

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

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2C1810;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #654321;
    font-size: 1.1rem;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.story-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.brew-methods {
    padding: 80px 0;
    background: #FFFDF5;
}

.brew-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C1810;
}

.method-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.method-tabs button {
    background: #F5F0E6;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.method-tabs button.tab-active {
    background: #8B4513;
    color: white;
}

.method-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.method-detail {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.method-detail.active {
    display: grid;
}

.method-detail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.method-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.method-text p {
    margin-bottom: 1.5rem;
    color: #654321;
}

.method-text ul {
    list-style: none;
}

.method-text li {
    padding: 0.5rem 0;
    color: #654321;
    position: relative;
    padding-left: 1.5rem;
}

.method-text li:before {
    content: "•";
    color: #8B4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.seasonal-collection {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8DFD0 0%, #D4C4A8 100%);
}

.seasonal-collection h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C1810;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.seasonal-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
}

.seasonal-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.seasonal-info {
    padding: 2rem;
}

.seasonal-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.seasonal-info p {
    color: #654321;
}

.testimonials {
    padding: 80px 0;
    background: #FFFDF5;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C1810;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #654321;
}

.testimonial span {
    font-weight: 600;
    color: #8B4513;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-controls button {
    background: #8B4513;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-controls button:hover {
    background: #654321;
}

.brew-guide-preview {
    padding: 100px 0;
    background: #F5F0E6;
    position: relative;
    overflow: hidden;
}

.guide-layout {
    position: relative;
}

.guide-main h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C1810;
    text-align: left;
}

.guide-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.guide-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.guide-text p {
    margin-bottom: 2rem;
    color: #654321;
    font-size: 1.1rem;
    line-height: 1.7;
}

.guide-visual {
    position: relative;
    height: 400px;
}

.guide-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 20px 20px 0 rgba(139, 69, 19, 0.1);
    z-index: 2;
}

.guide-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: -15px 15px 0 rgba(139, 69, 19, 0.08);
    z-index: 1;
}

.ingredient-quality {
    padding: 100px 0;
    background: #FFFDF5;
}

.ingredient-quality h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.quality-radial {
    display: flex;
    justify-content: center;
    gap: 4rem;
    position: relative;
}

.quality-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.quality-item:nth-child(1) {
    transform: translateY(-20px);
}

.quality-item:nth-child(2) {
    transform: translateY(30px);
}

.quality-item:nth-child(3) {
    transform: translateY(-10px);
}

.quality-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 4px solid #8B4513;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    transition: transform 0.3s ease;
}

.quality-item:hover .quality-circle {
    transform: scale(1.05);
}

.quality-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.quality-item p {
    color: #654321;
    max-width: 250px;
    margin: 0 auto;
}

.gift-ideas {
    padding: 100px 0;
    background: linear-gradient(135deg, #D4C4A8 0%, #C5B299 100%);
    position: relative;
}

.gift-ideas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.gift-cascade {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    min-height: 400px;
}

.gift-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.15);
    position: absolute;
    transition: transform 0.3s ease;
}

.gift-card-1 {
    left: 10%;
    top: 0;
    transform: rotate(-3deg);
    z-index: 3;
}

.gift-card-2 {
    left: 50%;
    top: 20px;
    transform: translateX(-50%) rotate(2deg);
    z-index: 2;
}

.gift-card-3 {
    right: 10%;
    top: 40px;
    transform: rotate(-1deg);
    z-index: 1;
}

.gift-card:hover {
    transform: translateY(-10px) rotate(0deg);
    z-index: 4;
}

.gift-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.gift-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.gift-card p {
    color: #654321;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
    display: block;
}

@media (max-width: 768px) {
    .guide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-visual {
        height: 300px;
        order: -1;
    }
    
    .guide-img-1,
    .guide-img-2 {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .quality-radial {
        flex-direction: column;
        gap: 2rem;
    }
    
    .quality-item {
        transform: none !important;
    }
    
    .gift-cascade {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }
    
    .gift-card {
        position: relative;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }
    
    .gift-card:hover {
        transform: translateY(-5px) !important;
    }
}

@media (max-width: 320px) {
    .guide-main h2,
    .ingredient-quality h2,
    .gift-ideas h2 {
        font-size: 1.8rem;
    }
    
    .quality-circle {
        width: 140px;
        height: 140px;
    }
    
    .gift-card {
        padding: 1.5rem;
    }
}
.guide-main h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C1810;
    text-align: center;
}
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #8B4513;
}

.cta-section .btn-primary:hover {
    background: #F5F0E6;
    color: #654321;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #8B4513;
}

.footer {
    background: #1A0F08;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo a {
    text-decoration: none;
}

.footer-logo p {
    opacity: 0.8;
    margin-top: 1rem;
}

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

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: #DEB887;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .burger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content,
    .guide-preview,
    .method-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .featured-products h2,
    .story-text h2,
    .brew-methods h2,
    .seasonal-collection h2,
    .testimonials h2,
    .brew-guide-preview h2,
    .ingredient-quality h2,
    .gift-ideas h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .products-grid,
    .seasonal-grid,
    .quality-grid,
    .gift-options {
        grid-template-columns: 1fr;
    }
    
    .method-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .method-content {
        padding: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .story-images,
    .guide-images {
        grid-template-columns: 1fr;
    }
    
    .footer-logo svg {
        width: 180px;
        height: 47px;
    }
}
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #8B4513;
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid #8B4513;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
}
.about-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
}

.hero-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.hero-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 300px;
}

.mini-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.mini-img-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.timeline-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #8B4513;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 45%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 55%;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
    position: relative;
}

.timeline-content h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #8B4513;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
}

.timeline-item.left .timeline-year {
    right: -80px;
}

.timeline-item.right .timeline-year {
    left: -80px;
}

.values-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.value-card p {
    color: #654321;
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.team-role {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-info p {
    color: #654321;
    line-height: 1.6;
}

.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8DFD0 0%, #D4C4A8 100%);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.1);
}

.process-step:nth-child(even) {
    grid-template-columns: 200px 1fr 80px;
}

.process-step:nth-child(even) .step-number {
    order: 3;
}

.process-step:nth-child(even) .step-image {
    order: 1;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8B4513;
    text-align: center;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.step-content p {
    color: #654321;
    line-height: 1.6;
}

.step-image {
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.impact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.2rem;
    color: #654321;
    font-weight: 600;
}

.global-reach-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.global-reach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

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

.world-map {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #E8DFD0 0%, #D4C4A8 100%);
    border-radius: 20px;
    overflow: hidden;
}

.map-point {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-point:hover {
    transform: scale(1.1);
}

.point-dot {
    width: 12px;
    height: 12px;
    background: #8B4513;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.point-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(139, 69, 19, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.point-info {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    z-index: 3;
}

.map-point:hover .point-info {
    opacity: 1;
}

.point-info h4 {
    color: #2C1810;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.point-info p {
    color: #654321;
    font-size: 0.8rem;
    margin: 0;
}

.point-1 { top: 40%; left: 25%; }
.point-2 { top: 35%; left: 65%; }
.point-3 { top: 45%; left: 55%; }
.point-4 { top: 30%; left: 75%; }
.point-5 { top: 60%; left: 30%; }

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.global-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.global-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
}

.global-stat h3 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.global-stat p {
    color: #654321;
    font-weight: 500;
}

.certifications-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.certifications-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.certifications-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 500px;
    position: relative;
}

.mosaic-item {
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

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

.mosaic-main {
    grid-column: 1;
    grid-row: 1 / 3;
    background: #8B4513;
    color: white;
}

.mosaic-main h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mosaic-main p {
    opacity: 0.9;
    line-height: 1.6;
}

.mosaic-side-1 {
    grid-column: 2;
    grid-row: 1;
    background: white;
    text-align: center;
}

.mosaic-side-2 {
    grid-column: 2;
    grid-row: 2;
    background: white;
    text-align: center;
}

.mosaic-side-3 {
    position: absolute;
    bottom: -30px;
    right: 50px;
    background: #654321;
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    width: 180px;
}

.mosaic-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mosaic-side-1 h4,
.mosaic-side-2 h4 {
    font-size: 1.1rem;
    color: #2C1810;
}

.mosaic-side-3 h4 {
    font-size: 1.1rem;
    color: white;
}

.story-gallery {
    padding: 100px 0;
    background: #FFFDF5;
}

.story-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gi-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.gi-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.gi-3 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.gi-4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.philosophy-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.philosophy-interactive {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #654321;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.interactive-quotes {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.1);
}

.quote-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quote-btn {
    background: #F5F0E6;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #654321;
}

.quote-btn.active {
    background: #8B4513;
    color: white;
}

.quote-content {
    position: relative;
    height: 120px;
}

.quote-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2C1810;
    font-style: italic;
}

.quote-text.active {
    opacity: 1;
}

.join-story-section {
    padding: 100px 0;
    background: #F5F0E6;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #654321;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-compact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-mini-grid {
        height: 250px;
        order: -1;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: calc(100% - 80px);
        left: 80px !important;
    }
    
    .timeline-year {
        left: -70px !important;
        right: auto !important;
    }
    
    .process-step {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .step-number {
        order: 1;
    }
    
    .step-content {
        order: 2;
    }
    
    .step-image {
        order: 3;
    }
    
    .global-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .world-map {
        height: 300px;
    }
    
    .global-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .global-stat {
        flex: 1;
        padding: 1.5rem;
    }
    
    .global-stat h3 {
        font-size: 2rem;
    }
    
    .certifications-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 150px 150px;
        height: auto;
    }
    
    .mosaic-main {
        grid-column: 1;
        grid-row: 1;
    }
    
    .mosaic-side-1 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .mosaic-side-2 {
        grid-column: 1;
        grid-row: 3;
    }
    
    .mosaic-side-3 {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
    }
    
    .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    .quote-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .quote-content {
        height: 150px;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-mini-grid {
        height: 200px;
    }
    
    .timeline-section h2,
    .values-section h2,
    .team-section h2,
    .process-section h2,
    .impact-section h2,
    .global-reach-section h2,
    .certifications-section h2,
    .story-gallery h2,
    .philosophy-text h2,
    .join-content h2 {
        font-size: 1.8rem;
    }
    
    .values-grid,
    .team-cards {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .world-map {
        height: 250px;
    }
    
    .global-stats {
        flex-direction: column;
    }
    
    .global-stat h3 {
        font-size: 1.8rem;
    }
    
    .certifications-mosaic {
        grid-template-rows: 250px 120px 120px;
    }
    
    .mosaic-item {
        padding: 1.5rem;
    }
    
    .interactive-quotes {
        padding: 2rem 1.5rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .philosophy-text p {
        font-size: 1rem;
    }
}
.commitments-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.commitments-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.commitments-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pyramid-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.pyramid-row:nth-child(1) {
    margin-bottom: 1rem;
}

.pyramid-row:nth-child(2) {
    margin-bottom: 1rem;
}

.commitment-item {
    text-align: center;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-10px);
}

.commitment-hexagon {
    width: 120px;
    height: 138px;
    background: #8B4513;
    position: relative;
    margin: 0 auto 1.5rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.commitment-item:hover .commitment-hexagon {
    background: #654321;
    transform: rotate(5deg);
}

.hex-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.commitment-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.commitment-hexagon h4 {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.commitment-item p {
    color: #654321;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .pyramid-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .commitment-item {
        max-width: 150px;
    }
    
    .commitment-hexagon {
        width: 100px;
        height: 115px;
    }
    
    .commitment-icon {
        font-size: 1.5rem;
    }
    
    .commitment-hexagon h4 {
        font-size: 0.8rem;
    }
    
    .commitment-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .commitments-section h2 {
        font-size: 1.8rem;
    }
    
    .pyramid-row {
        gap: 1rem;
    }
    
    .commitment-item {
        max-width: 130px;
    }
    
    .commitment-hexagon {
        width: 80px;
        height: 92px;
    }
    
    .commitment-icon {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .commitment-hexagon h4 {
        font-size: 0.7rem;
    }
    
    .commitment-item p {
        font-size: 0.75rem;
    }
}
@media (max-width: 320px) {
    .impact-section h2 {
        font-size: 1.8rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}
.heritage-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFDF5 0%, #F5F0E6 100%);
}

.heritage-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.heritage-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.heritage-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 500px;
}

.heritage-main-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.2);
    transition: transform 0.3s ease;
}

.heritage-main-img:hover {
    transform: translateY(-5px);
}

.heritage-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.heritage-main-img:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    opacity: 0.9;
    margin: 0;
}

.heritage-side-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.15);
    transition: transform 0.3s ease;
    flex: 1;
}

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

.side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-img:hover .side-overlay {
    opacity: 1;
}

.side-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.heritage-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.heritage-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

.heritage-feature:hover {
    transform: translateX(10px);
}

.heritage-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heritage-feature p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .heritage-images {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .heritage-main-img {
        height: 300px;
    }
    
    .heritage-side-images {
        flex-direction: row;
    }
    
    .side-img {
        height: 150px;
    }
}

@media (max-width: 320px) {
    .heritage-section h2 {
        font-size: 1.8rem;
    }
    
    .heritage-images {
        grid-template-columns: 1fr;
    }
    
    .heritage-main-img {
        height: 250px;
    }
    
    .heritage-side-images {
        flex-direction: column;
    }
    
    .side-img {
        height: 120px;
    }
    
    .heritage-feature {
        padding: 1.5rem;
    }
    
    .heritage-feature h3 {
        font-size: 1.1rem;
    }
    
    .heritage-feature p {
        font-size: 0.9rem;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .image-overlay h4 {
        font-size: 1.1rem;
    }
}
.about-hero .btn-primary {
    background: #DEB887;
    color: #2C1810;
    border: 2px solid #DEB887;
}

.about-hero .btn-primary:hover {
    background: transparent;
    color: #DEB887;
    border-color: #DEB887;
}
.products-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-align: center;
}

.hero-products-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-products-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: #DEB887;
    color: #2C1810;
    border-color: #DEB887;
}

.products-grid-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #8B4513;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.product-info p {
    color: #654321;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-origin,
.product-roast,
.product-type {
    background: #F5F0E6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #654321;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 1rem;
}

.btn-explore {
    display: block;
    width: 100%;
    background: #8B4513;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-explore:hover {
    background: #654321;
}

.load-more {
    text-align: center;
}

.bestsellers-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.bestsellers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.bestsellers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bestseller-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.bestseller-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B4513;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.bestseller-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.bestseller-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.rating {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 1rem;
}

.story-section {
    padding: 100px 0;
    background: #FFFDF5;
}

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

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2C1810;
}

.story-text p {
    font-size: 1.1rem;
    color: #654321;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-visual {
    position: relative;
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.2);
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.story-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.8);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.journey-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.journey-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.journey-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.journey-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.journey-step p {
    color: #654321;
    line-height: 1.6;
}

.subscription-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8DFD0 0%, #D4C4A8 100%);
}

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

.subscription-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.subscription-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #654321;
}

.subscription-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.subscription-benefits li {
    padding: 0.5rem 0;
    color: #654321;
    position: relative;
    padding-left: 2rem;
}

.subscription-benefits li:before {
    content: "✓";
    color: #8B4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.subscription-visual {
    position: relative;
}

.subscription-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.3);
}

.subscription-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.box-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.9));
    color: white;
    padding: 1.5rem;
}

.box-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gift-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.gift-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.gift-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gift-package {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.gift-package:hover {
    transform: translateY(-10px);
}

.gift-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #8B4513;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.gift-package img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gift-info {
    padding: 1.5rem;
    text-align: center;
}

.gift-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.gift-info p {
    color: #654321;
    margin-bottom: 1rem;
}

.gift-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.quality-section {
    padding: 100px 0;
    background: #F5F0E6;
}

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

.quality-visual {
    position: relative;
}

.quality-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #8B4513;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    z-index: 2;
}

.quality-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.2);
}

.quality-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2C1810;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quality-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.quality-feature p {
    color: #654321;
    line-height: 1.6;
}

.cta-products {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-align: center;
}

.cta-products-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-products-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-products .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-products .btn-secondary:hover {
    background: white;
    color: #8B4513;
}

@media (max-width: 768px) {
    .hero-products-content h1 {
        font-size: 2.5rem;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-image img {
        height: 250px;
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
    }
    
    .subscription-content {
        grid-template-columns: 1fr;
    }
    
    .subscription-box img {
        height: 250px;
    }
    
    .gift-packages {
        grid-template-columns: 1fr;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
    }
    
    .quality-visual img {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .hero-products-content h1 {
        font-size: 2rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .bestsellers-section h2,
    .story-text h2,
    .journey-section h2,
    .gift-section h2,
    .quality-text h2,
    .cta-products-content h2 {
        font-size: 1.8rem;
    }
    
    .product-item {
        margin: 0 10px;
    }
    
    .bestsellers-container {
        grid-template-columns: 1fr;
    }
    
    .story-image img {
        height: 200px;
    }
    
    .subscription-box img {
        height: 200px;
    }
    
    .gift-packages {
        grid-template-columns: 1fr;
    }
    
    .quality-visual img {
        height: 250px;
    }
}
.brewing-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-align: center;
}

.brewing-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.brewing-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-brewing-visual {
    margin-top: 4rem;
}

.brewing-tools {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tool {
    text-align: center;
    transition: transform 0.3s ease;
}

.tool:hover {
    transform: translateY(-10px);
}

.tool img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #DEB887;
    margin-bottom: 1rem;
}

.tool span {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.technique-showcase {
    padding: 100px 0;
    background: #FFFDF5;
}

.technique-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.technique-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.technique-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.1);
}

.technique-visual {
    position: relative;
    height: 300px;
}

.technique-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technique-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.9));
    color: white;
    padding: 2rem;
}

.technique-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.technique-content {
    padding: 2rem;
}

.technique-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.technique-content p {
    color: #654321;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.technique-tips {
    list-style: none;
}

.technique-tips li {
    padding: 0.5rem 0;
    color: #654321;
    position: relative;
    padding-left: 1.5rem;
}

.technique-tips li:before {
    content: "•";
    color: #8B4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.technique-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aside-technique {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.aside-technique:hover {
    transform: translateX(10px);
}

.aside-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #2C1810;
}

.aside-content p {
    color: #654321;
    font-size: 0.9rem;
    margin: 0;
}

.brewing-method-comparison {
    padding: 100px 0;
    background: #F5F0E6;
}

.brewing-method-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

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

.brewing-method-column {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

.brewing-method-column:hover {
    transform: translateY(-10px);
}

.brewing-method-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F5F0E6;
}

.brewing-method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.brewing-method-header h3 {
    font-size: 1.5rem;
    color: #2C1810;
}

.brewing-method-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item strong {
    color: #8B4513;
    font-size: 0.9rem;
}

.detail-item span {
    color: #654321;
    font-size: 0.9rem;
}

.progression-guide {
    padding: 100px 0;
    background: #FFFDF5;
}

.progression-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.progression-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.progression-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

.progression-step:hover {
    transform: translateX(10px);
}

.step-marker {
    width: 60px;
    height: 60px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.step-content p {
    color: #654321;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-tools {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-tools span {
    background: #F5F0E6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #654321;
}

.flavor-exploration {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8DFD0 0%, #D4C4A8 100%);
}

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

.flavor-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2C1810;
}

.flavor-text p {
    color: #654321;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.flavor-notes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flavor-note {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.flavor-note strong {
    color: #8B4513;
}

.flavor-visual {
    position: relative;
    transform: translateY(20px) rotate(3deg);
}

.flavor-wheel {
    width: 320px;
    height: 320px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(
        #FFB6C1 0deg 60deg,
        #FFD700 60deg 120deg,
        #98FB98 120deg 180deg,
        #87CEEB 180deg 240deg,
        #DDA0DD 240deg 300deg,
        #FFB6C1 300deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        15px 15px 30px rgba(44, 24, 16, 0.3),
        inset 5px 5px 15px rgba(255, 255, 255, 0.6);
    border: 8px solid white;
    transform: rotate(-8deg);
    transition: all 0.5s ease;
    margin-left: 30px;
}

.flavor-wheel:hover {
    transform: rotate(-5deg) scale(1.05);
}

.wheel-layer {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 0 25px rgba(44, 24, 16, 0.1);
}

.layer-1 {
    width: 260px;
    height: 260px;
    transform: rotate(12deg) scale(1.05);
    border: 3px solid rgba(139, 69, 19, 0.2);
}

.layer-2 {
    width: 190px;
    height: 185px;
    transform: rotate(-7deg) scale(0.95);
    border: 2px solid rgba(139, 69, 19, 0.15);
}

.wheel-center {
    width: 110px;
    height: 105px;
    background: linear-gradient(135deg, #8B4513, #654321);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    font-size: 0.85rem;
    z-index: 3;
    box-shadow: 
        0 0 25px rgba(139, 69, 19, 0.5),
        inset 2px 2px 5px rgba(255, 255, 255, 0.3);
    transform: rotate(5deg);
    border: 2px solid rgba(222, 184, 135, 0.5);
}

.wheel-layer span {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2C1810;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    transform-origin: center;
}

.layer-1 span:nth-child(1) { 
    transform: rotate(-65deg) translate(128px) rotate(65deg);
    color: #E75480;
}
.layer-1 span:nth-child(2) { 
    transform: rotate(-15deg) translate(132px) rotate(15deg);
    color: #B8860B;
}
.layer-1 span:nth-child(3) { 
    transform: rotate(25deg) translate(125px) rotate(-25deg);
    color: #228B22;
}

.layer-2 span:nth-child(1) { 
    transform: rotate(-45deg) translate(92px) rotate(45deg);
    color: #8B4513;
}
.layer-2 span:nth-child(2) { 
    transform: rotate(5deg) translate(95px) rotate(-5deg);
    color: #D2691E;
}
.layer-2 span:nth-child(3) { 
    transform: rotate(45deg) translate(88px) rotate(-45deg);
    color: #8B7355;
}

.flavor-visual::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: -1;
    transform: rotate(45deg);
}

.flavor-visual::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: -10px;
    width: 60px;
    height: 60px;
    background: rgba(222, 184, 135, 0.2);
    border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
    z-index: -1;
    transform: rotate(-30deg);
}

@media (max-width: 768px) {
    .flavor-visual {
        transform: none;
        margin-left: 0;
    }
    
    .flavor-wheel {
        transform: rotate(-3deg);
        margin: 0 auto;
    }
    
    .flavor-wheel:hover {
        transform: rotate(-1deg) scale(1.03);
    }
}

.brewing-mastery-section {
    padding: 100px 0;
    background: #FFFDF5;
}

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

.mastery-visual {
    position: relative;
}

.mastery-image-frame {
    aspect-ratio: 4/3; 
    overflow: hidden;
}

.mastery-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mastery-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #8B4513;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
}

.mastery-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2C1810;
}

.mastery-principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

.principle:hover {
    transform: translateX(10px);
}

.principle-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.principle-content p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.brewing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-align: center;
}

.brewing-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.brewing-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.brewing-cta .btn-primary {
    background: #DEB887;
    color: #2C1810;
    border: 2px solid #DEB887;
}

.brewing-cta .btn-primary:hover {
    background: transparent;
    color: #DEB887;
    border-color: #DEB887;
}

.brewing-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.brewing-cta .btn-secondary:hover {
    background: white;
    color: #8B4513;
}

@media (max-width: 768px) {
    .brewing-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .technique-grid {
        grid-template-columns: 1fr;
    }
    
    .brewing-comparison-layout {
        grid-template-columns: 1fr;
    }
    
    .progression-step {
        flex-direction: column;
        text-align: center;
    }
    
    .flavor-content {
        grid-template-columns: 1fr;
    }
    
    .mastery-content {
        grid-template-columns: 1fr;
    }
    
    .mastery-image-frame img {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .brewing-hero-content h1 {
        font-size: 2rem;
    }
    
    .brewing-tools {
        flex-direction: column;
        align-items: center;
    }
    
    .tool img {
        width: 100px;
        height: 100px;
    }
    
    .technique-showcase h2,
    .brewing-method-comparison h2,
    .progression-guide h2,
    .flavor-text h2,
    .mastery-text h2,
    .brewing-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .flavor-wheel {
        width: 250px;
        height: 250px;
    }
    
    .wheel-center {
        width: 80px;
        height: 80px;
        font-size: 0.7rem;
    }
    
    .principle {
        flex-direction: column;
        text-align: center;
    }
}
.blog-hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.blog-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.blog-hero-visual {
    max-width: 600px;
    margin: 0 auto;
}

.blog-hero-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-articles-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.featured-articles-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.articles-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.featured-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

.featured-article-card:hover {
    transform: translateY(-10px);
}

.article-visual-frame {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article-card:hover .article-visual-frame img {
    transform: scale(1.1);
}

.article-category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #8B4513;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content-text {
    padding: 2rem;
}

.article-content-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.article-content-text p {
    color: #654321;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-read-link {
    color: #8B4513;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-read-link:hover {
    color: #654321;
}

.blog-categories-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.blog-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.categories-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-tile {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.2);
    transition: transform 0.3s ease;
}

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

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.category-tile:hover .tile-overlay-content {
    transform: translateY(0);
}

.tile-overlay-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.tile-overlay-content p {
    opacity: 0.9;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tile-overlay-content a {
    color: #DEB887;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tile-overlay-content a:hover {
    color: white;
}

.recent-posts-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.recent-posts-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.posts-timeline-layout {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.posts-timeline-layout::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #8B4513;
    opacity: 0.3;
}

.timeline-post-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.post-date-marker {
    width: 100px;
    flex-shrink: 0;
    text-align: right;
}

.post-date-marker span {
    background: #8B4513;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.post-content-block {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
}

.post-content-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.post-content-block p {
    color: #654321;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.read-time {
    color: #8B4513;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-continue-link {
    color: #8B4513;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-continue-link:hover {
    color: #654321;
}

.blog-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8DFD0 0%, #D4C4A8 100%);
    text-align: center;
}

.blog-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.blog-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #654321;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .articles-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .categories-mosaic-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-timeline-layout::before {
        left: 30px;
    }
    
    .timeline-post-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-date-marker {
        width: auto;
        text-align: left;
    }
    
    .cta-action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .featured-articles-section h2,
    .blog-categories-section h2,
    .recent-posts-section h2,
    .blog-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .article-content-text,
    .post-content-block {
        padding: 1.5rem;
    }
    
    .category-tile {
        height: 200px;
    }
    
    .tile-overlay-content {
        padding: 1.5rem;
    }
}
.brewing-science-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F0E6 0%, #E8DFD0 100%);
}

.science-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.science-text-column h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C1810;
}

.science-principle-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

.science-principle-card:hover {
    transform: translateX(10px);
}

.principle-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.principle-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.principle-content p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.science-visual-column {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.1);
}

.extraction-diagram {
    text-align: center;
}

.diagram-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2C1810;
}

.spectrum-bar {
    display: flex;
    height: 80px;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.2);
}

.under-extraction-zone {
    flex: 1;
    background: linear-gradient(135deg, #FFB74D, #FF9800);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
}

.optimal-zone {
    flex: 2;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
}

.over-extraction-zone {
    flex: 1;
    background: linear-gradient(135deg, #795548, #4E342E);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
}

.zone-indicator {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.flavor-notes {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.flavor-note-left, .flavor-note-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flavor-note-left span {
    background: #FFF3E0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #E65100;
    font-weight: 500;
}

.flavor-note-right span {
    background: #E8F5E8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #2E7D32;
    font-weight: 500;
}

.science-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #F5F0E6;
}

.science-cta p {
    color: #654321;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .science-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .science-principle-card {
        flex-direction: column;
        text-align: center;
    }
    
    .spectrum-bar {
        height: 60px;
    }
    
    .flavor-notes {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 320px) {
    .brewing-science-section h2 {
        font-size: 1.8rem;
    }
    
    .science-visual-column {
        padding: 1.5rem;
    }
    
    .spectrum-bar {
        flex-direction: column;
        height: auto;
    }
    
    .under-extraction-zone,
    .optimal-zone,
    .over-extraction-zone {
        padding: 1rem;
    }
}
.faq-hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-align: center;
}

.faq-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.faq-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.faq-accordion-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: white;
    border: none;
    padding: 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C1810;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #F5F0E6;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 2rem 2rem 2rem;
    max-height: 500px;
}

.accordion-content p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.faq-categories-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.faq-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2C1810;
}

.faq-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-category-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

.faq-category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.faq-category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.faq-category-card p {
    color: #654321;
    margin-bottom: 1.5rem;
}

.category-link {
    color: #8B4513;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #654321;
}

.faq-resources-section {
    padding: 100px 0;
    background: #FFFDF5;
}

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

.resources-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.resources-text p {
    color: #654321;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.resources-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #2C1810;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.resource-link:hover {
    transform: translateX(10px);
}

.link-icon {
    font-size: 1.5rem;
}

.resources-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.2);
}

.faq-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8DFD0 0%, #D4C4A8 100%);
    text-align: center;
}

.faq-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.faq-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #654321;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .faq-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .resources-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .resources-visual {
        order: -1;
    }
    
    .resources-visual img {
        height: 250px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .faq-hero-content h1 {
        font-size: 2rem;
    }
    
    .faq-categories-section h2,
    .resources-text h2,
    .faq-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .accordion-header {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-link {
        padding: 0.8rem 1.2rem;
    }
}
.privacy-hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-align: center;
}

.privacy-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.privacy-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.7;
    font-style: italic;
}

.privacy-content-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.privacy-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
}

.privacy-nav-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.privacy-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    padding: 1rem 1.5rem;
    color: #654321;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: #8B4513;
    color: white;
}

.privacy-main-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.privacy-article h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2C1810;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F5F0E6;
}

.privacy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.privacy-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.privacy-point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.privacy-point p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.usage-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.usage-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.usage-content p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.cookies-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.cookie-type h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.cookie-type p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.cookie-controls {
    background: #F5F0E6;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.cookie-controls p {
    color: #654321;
    margin: 0;
}

.protection-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.protection-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.protection-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.protection-feature p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.right-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.right-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.right-item p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.update-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.update-info p {
    color: #654321;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.update-info p:last-child {
    margin-bottom: 0;
}

.privacy-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8DFD0 0%, #D4C4A8 100%);
    text-align: center;
}

.privacy-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.privacy-contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #654321;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .privacy-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .privacy-nav-sidebar {
        position: static;
    }
    
    .privacy-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .usage-grid,
    .cookies-info,
    .rights-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .privacy-hero-section {
        padding: 120px 0 60px;
    }
    
    .privacy-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .privacy-hero-content p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .last-updated {
        font-size: 0.8rem;
    }
    
    .privacy-content-section {
        padding: 60px 0;
    }
    
    .privacy-content-wrapper {
        gap: 2rem;
    }
    
    .privacy-nav {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .privacy-main-content {
        gap: 2.5rem;
    }
    
    .privacy-article h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .privacy-points {
        gap: 1rem;
    }
    
    .privacy-point {
        padding: 1.2rem;
    }
    
    .privacy-point h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .privacy-point p {
        font-size: 0.9rem;
    }
    
    .usage-grid {
        gap: 1rem;
    }
    
    .usage-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .usage-icon {
        font-size: 1.5rem;
    }
    
    .usage-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .usage-content p {
        font-size: 0.9rem;
    }
    
    .cookies-info {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cookie-type {
        padding: 1.2rem;
    }
    
    .cookie-type h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .cookie-type p {
        font-size: 0.9rem;
    }
    
    .cookie-controls {
        padding: 1.2rem;
    }
    
    .cookie-controls p {
        font-size: 0.9rem;
    }
    
    .protection-features {
        gap: 1rem;
    }
    
    .protection-feature {
        padding: 1.2rem;
    }
    
    .protection-feature h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .protection-feature p {
        font-size: 0.9rem;
    }
    
    .rights-list {
        gap: 1rem;
    }
    
    .right-item {
        padding: 1.2rem;
    }
    
    .right-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .right-item p {
        font-size: 0.9rem;
    }
    
    .update-info {
        padding: 1.2rem;
    }
    
    .update-info p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .privacy-contact-section {
        padding: 60px 0;
    }
    
    .privacy-contact-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .privacy-contact-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
.terms-hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-align: center;
}

.terms-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.terms-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.7;
    font-style: italic;
}

.terms-content-section {
    padding: 100px 0;
    background: #FFFDF5;
}

.terms-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
}

.terms-nav-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.terms-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    padding: 1rem 1.5rem;
    color: #654321;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: #8B4513;
    color: white;
}

.terms-main-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.terms-article h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2C1810;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F5F0E6;
}

.terms-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.terms-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.terms-point p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.property-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.property-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.property-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.property-item p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.conduct-rules {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.conduct-rule {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.rule-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rule-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2C1810;
}

.rule-content p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.content-guidelines {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guideline {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.guideline h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.guideline p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.liability-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.liability-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.liability-point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.liability-point p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.law-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.law-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.law-point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.law-point p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.changes-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.change-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
}

.change-point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.change-point p {
    color: #654321;
    line-height: 1.6;
    margin: 0;
}

.terms-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8DFD0 0%, #D4C4A8 100%);
    text-align: center;
}

.terms-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C1810;
}

.terms-contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #654321;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .terms-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .terms-nav-sidebar {
        position: static;
    }
    
    .terms-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}

@media (max-width: 320px) {
    .terms-hero-section {
        padding: 120px 0 60px;
    }
    
    .terms-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .terms-hero-content p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .last-updated {
        font-size: 0.8rem;
    }
    
    .terms-content-section {
        padding: 60px 0;
    }
    
    .terms-content-wrapper {
        gap: 2rem;
    }
    
    .terms-nav {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .terms-main-content {
        gap: 2.5rem;
    }
    
    .terms-article h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .terms-points {
        gap: 1rem;
    }
    
    .terms-point {
        padding: 1.2rem;
    }
    
    .terms-point p {
        font-size: 0.9rem;
    }
    
    .property-items,
    .content-guidelines,
    .liability-info,
    .law-info,
    .changes-info {
        gap: 1rem;
    }
    
    .property-item,
    .guideline,
    .liability-point,
    .law-point,
    .change-point {
        padding: 1.2rem;
    }
    
    .property-item h3,
    .guideline h3,
    .liability-point h3,
    .law-point h3,
    .change-point h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .property-item p,
    .guideline p,
    .liability-point p,
    .law-point p,
    .change-point p {
        font-size: 0.9rem;
    }
    
    .conduct-rules {
        gap: 1rem;
    }
    
    .conduct-rule {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .rule-icon {
        font-size: 1.3rem;
    }
    
    .rule-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .rule-content p {
        font-size: 0.9rem;
    }
    
    .terms-contact-section {
        padding: 60px 0;
    }
    
    .terms-contact-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .terms-contact-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
.thanks-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFDF5;
}

.thanks-content {
    text-align: center;
    max-width: 400px;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2C1810;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #654321;
}

.thanks-actions {
    display: flex;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #654321;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .science-principle-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .principle-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 320px) {
    .science-principle-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .principle-icon {
        margin-bottom: 0;
        font-size: 2rem;
    }
    
    .principle-content {
        text-align: center;
    }
    
    .principle-content h3 {
        text-align: center;
    }
    
    .principle-content p {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .brew-guide-preview {
        background: #FFFDF5 !important;
    }
    
    .guide-visual {
        background: transparent !important;
    }
}

@media (max-width: 320px) {
    .brew-guide-preview {
        background: #FFFDF5 !important;
    }
    
    .guide-visual {
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .guide-img-1,
    .guide-img-2 {
        box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1) !important;
    }
}
@media (max-width: 768px) {
    .quality-badge {
        display: none;
    }
}

@media (max-width: 320px) {
    .quality-badge {
        display: none;
    }
}
@media (max-width: 768px) {
    .mastery-badge {
        display: none;
    }
}

@media (max-width: 320px) {
    .mastery-badge {
        display: none;
    }
}
