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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.375rem;
    }
}

/* Links */
a {
    color: #2D5A27;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4A7C59;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

.btn--primary {
    background-color: #2D5A27;
    color: white;
    border-color: #2D5A27;
}

.btn--primary:hover {
    background-color: #4A7C59;
    border-color: #4A7C59;
    color: white;
}

.btn--secondary {
    background-color: transparent;
    color: #2D5A27;
    border-color: #2D5A27;
}

.btn--secondary:hover {
    background-color: #2D5A27;
    color: white;
}

.btn--outline {
    background-color: transparent;
    color: #2D5A27;
    border-color: #2D5A27;
}

.btn--outline:hover {
    background-color: #2D5A27;
    color: white;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn__text {
    flex: 1;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn--large {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2D5A27, #4A7C59);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-banner__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-banner__description {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
    color: #fff;
}

.cookie-banner__actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-banner__button {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cookie-banner__button--accept {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-banner__button--accept:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-banner__button--decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-banner__button:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #2D5A27;
}

.care-instructions__text {
    text-align: center;
}

.logo__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo__text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5A27;
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__item {
    position: relative;
}

.nav__link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link--active {
    color: #2D5A27;
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2D5A27;
}

/* Dropdown */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-item {
    margin: 0;
}

.nav__dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: background-color 0.3s ease;
}

.nav__dropdown-link:hover,
.nav__dropdown-link--active {
    background-color: #f8f9fa;
    color: #2D5A27;
}

/* Burger Menu */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header__burger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 71px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header__burger {
        display: flex;
        z-index: 1000;
        position: relative;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav__item {
        width: 100%;
        text-align: center;
    }
    
    .nav__link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .nav__link:hover {
        background-color: #f8f9fa;
    }
    
    .nav__dropdown {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 8px;
        padding: 0.5rem 0;
    }
    
    .nav__dropdown-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .menu-open {
        overflow: hidden;
    }
}

/* Page Header */
.page-header {
    background: url('../img/modern-kitchen-design-with-green-accent-elements-9827.webp') no-repeat;
    padding: 4rem 0;
    text-align: center;
    background-size: cover;
}

.page-header__title {
    font-size: 3rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.page-header__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header__title {
        font-size: 2.25rem;
    }
    
    .page-header__description {
        font-size: 1.125rem;
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__title-line {
    display: block;
}

.hero__title-line--highlight {
    color: #2D5A27;
}

.hero__description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

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

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-container {
    position: relative;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero__image-container img {
    width: 100%;
    border-radius: 52px;
}

.hero__floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.hero__floating-element--1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero__floating-element--2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero__floating-element--3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__image-container {}

    .hero__actions { justify-content: center;}
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.features__header {
    text-align: center;
    margin-bottom: 4rem;
}

.features__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.features__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card__icon {
    font-size: 28px;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card__title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.feature-card__description {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features {
        padding: 3rem 0;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Products Preview Section */
.products-preview {
    padding: 6rem 0;
    background: #f8f9fa;
}

.products-preview__header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-preview__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.products-preview__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.product-category {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-category__image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-category__icon {
    width: 100px;
    height: 100px;
    font-size: 28px;    
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
}

.product-category__title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
    text-align: center;
}

.product-category__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-category__button {
    display: block;
    align-items: center;
    gap: 0.5rem;
    color: #2D5A27;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 auto;
    width: 53%;
}

.product-category__button:hover {
    color: #4A7C59;
}

@media (max-width: 768px) {
    .products-preview {
        padding: 3rem 0;
    }
    
    .products-preview__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-category {
        padding: 1.5rem;
    }
}

/* About Preview Section */
.about-preview {
    padding: 6rem 0;
    background: white;
}

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

.about-preview__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1.5rem;
}

.about-preview__description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-preview__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-preview__image-container {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-preview__image-container img {
    width: 100%;
}

.about-preview__floating-element {
    position: absolute;
    animation: float 8s ease-in-out infinite;
}

.about-preview__floating-element--1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.about-preview__floating-element--2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
}

@media (max-width: 768px) {
    .about-preview {
        padding: 3rem 0;
    }
    
    .about-preview__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .logo {
        justify-content: center;
    }
    
    .about-preview__image-container {}
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: white;
}

.products__header {
    text-align: center;
    margin-bottom: 4rem;
}

.products__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.products__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Categories Overview */
.products__categories-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 89px auto;
    padding: 0 23px;
}

.category-overview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.category-overview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-overview__icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-overview__title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.category-overview__description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.category-overview__count {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2D5A27;
    background: rgba(45, 90, 39, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.products__category {
    margin-bottom: 4rem;
}

.products__category-title {
    font-size: 2rem;
    color: #2D5A27;
    margin-bottom: 2rem;
    text-align: center;
}

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

.product-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
} */

.product-item__image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-item__image img {
    width: 100%;
}

.product-item__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
}

.product-item__title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
    text-align: center;
}

.product-item__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.product-item__features {
    margin-bottom: 1.5rem;
}

.product-item__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    justify-content: center;
}

.product-item__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5A27;
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-item__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2D5A27;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 2px solid #2D5A27;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.product-item__button:hover {
    background-color: #2D5A27;
    color: white;
}

@media (max-width: 768px) {
    .products {
        padding: 3rem 0;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-item {
        padding: 1.5rem;
    }
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2D5A27, #4A7C59);
    color: white;
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta__description {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn--primary {
    background-color: white;
    color: #2D5A27;
    border-color: white;
}

.cta .btn--primary:hover {
    background-color: #f8f9fa;
    color: #2D5A27;
    border-color: #f8f9fa;
}

@media (max-width: 768px) {
    .cta {
        padding: 3rem 0;
    }
    
    .cta__title {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background: #2D5A27;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer__logo .logo__text {
    color: white;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.footer__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: white;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {

    .care-instructions__content {
        display: block;
    }

    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Contact Info Section */
.contact-info {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card__icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
}

.contact-card__title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.contact-card__text {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-card__link {
    color: #2D5A27;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card__link:hover {
    color: #4A7C59;
}

/* Contact Form Section */
.contact-form {
    padding: 4rem 0;
    background: white;
}

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

.contact-form__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.contact-form__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form__field {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #2D5A27;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.form__checkbox input {
    margin-top: 0.25rem;
}

.form__checkbox-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

.form__link {
    color: #2D5A27;
    text-decoration: underline;
}

.form__link:hover {
    color: #4A7C59;
}

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

/* Map Section */
.map {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map__content {
    text-align: center;
}

.map__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.map__description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.map__placeholder {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.map__placeholder-text {
    margin-top: 1rem;
    color: #666;
    font-size: 1.125rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: white;
}

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

.faq__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.faq__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.faq__item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: #2D5A27;
}

.faq__icon {
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.faq__answer-text {
    padding: 0 0 1.5rem 0;
    color: #666;
    line-height: 1.6;
}

/* Legal Content Section */
.legal-content {
    padding: 4rem 0;
    background: white;
}

.legal-content__wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.legal-content__sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-nav__list {
    list-style: none;
}

.legal-nav__item {
    margin-bottom: 0.5rem;
}

.legal-nav__link {
    display: block;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legal-nav__link:hover {
    background-color: #f8f9fa;
    color: #2D5A27;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section__title {
    font-size: 2rem;
    color: #2D5A27;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-section__subtitle {
    font-size: 1.5rem;
    color: #333;
    margin: 2rem 0 1rem 0;
}

.legal-section__subtitle-small {
    font-size: 1.25rem;
    color: #333;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section__text {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.legal-section__list {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section__list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #666;
}

.legal-section__link {
    color: #2D5A27;
    text-decoration: underline;
}

.legal-section__link:hover {
    color: #4A7C59;
}

@media (max-width: 768px) {
    .legal-content__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-content__sidebar {
        position: static;
    }
    
    .legal-nav {
        display: none;
    }
}

/* About Story Section */
.about-story {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.team-member__image img {
    width: 100%;
    margin-bottom: 14px;    
}

.about-story__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1.5rem;
}

.about-story__description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-story__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-story__image-container {
    position: relative;
    width: 100%;
    height: 358px;
    background: url('../img/main/images/modern-kitchen-interior-with-island-and-views-8215.webp') no-repeat;
    background-size: cover;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-story__floating-element {
    position: absolute;
    animation: float 8s ease-in-out infinite;
}

.about-story__floating-element--1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.about-story__floating-element--2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
}

@media (max-width: 768px) {
    .about-story__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-story__image-container {}
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: white;
}

.mission__content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1.5rem;
}

.mission__description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.mission__value {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mission__value-icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission__value-title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.mission__value-description {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.team__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.team__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member__avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-member__name {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.team-member__position {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member__description {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2D5A27, #4A7C59);
    color: white;
}

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

.stats__title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.stats__description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat__icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat__number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat__label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat__description {
    font-size: 0.875rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .stats__grid {}
    
    .stat__number {
        font-size: 2.5rem;
    }
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #f8f9fa;
}

.process__header {
    text-align: center;
    margin-bottom: 4rem;
}

.process__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.process__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
}

.process__step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.process__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #2D5A27;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 2;
}

.process__step-icon {
    font-size: 28px;
    width: 100px;
    height: 100px;
    margin: 1rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process__step-title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.process__step-description {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process {
        padding: 3rem 0;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process__steps::before {
        display: none;
    }
}

/* Animations - DISABLED */
/* All animations disabled for better performance */

* {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* Disable all hover effects */
*:hover {
    transform: none !important;
    box-shadow: inherit !important;
    color: inherit !important;
}

/* Cookie banner exceptions - allow transitions for functionality */
.cookie-banner {
    transition: transform 0.3s ease !important;
}

.cookie-banner__button {
    transition: all 0.3s ease !important;
}

.cookie-banner__button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* Ensure transform is allowed for the cookie banner despite the global animations-disable rule.
   The project includes a global rule that sets `transform: none !important` for all elements
   which prevents the banner from being translated off-screen. Re-enable transform specifically
   for the banner so the show/hide transition works, without modifying the global rule. */
.cookie-banner {
    transform: translateY(100%) !important;
}

.cookie-banner.show {
    transform: translateY(0) !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Values Section */
.values {
    padding: 6rem 0;
    background: #f8f9fa;
}

.values__header {
    text-align: center;
    margin-bottom: 4rem;
}

.values__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.values__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.value-card__icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-card__title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.value-card__description {
    color: #666;
    line-height: 1.6;
}

/* Timeline Section */
.timeline {
    padding: 6rem 0;
    background: white;
}

.timeline__header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.timeline__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.timeline__item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline__item:nth-child(odd) {
    flex-direction: row;
}

.timeline__item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline__year {
    width: 120px;
    height: 60px;
    background: #2D5A27;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.timeline__item:nth-child(odd) .timeline__year {
    margin-right: 2rem;
}

.timeline__item:nth-child(even) .timeline__year {
    margin-left: 2rem;
}

.timeline__content .timeline__content {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.timeline__content .timeline__title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.timeline__content .timeline__description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline__content::before {
        left: 30px;
    }
    
    .timeline__item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline__year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        margin: 0;
    }
    
    .timeline__content .timeline__content {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Materials Section */
.materials {
    padding: 6rem 0;
    background: #f8f9fa;
}

.materials__header {
    text-align: center;
    margin-bottom: 4rem;
}

.materials__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.materials__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.material-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.material-card__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.material-card__title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.material-card__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.material-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.material-card__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2D5A27;
    font-size: 0.9rem;
}

.material-card__feature svg {
    color: #4A7C59;
    flex-shrink: 0;
}

/* Care Instructions Section */
.care-instructions {
    padding: 6rem 0;
    background: white;
}

.care-instructions__content {}

.care-instructions__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1.5rem;
}

.care-instructions__description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.care-instructions__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.care-instruction {
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2D5A27;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-instruction:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.care-instruction__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.care-instruction__content {
    flex: 1;
}

.care-instruction__title {
    font-size: 1.25rem;
    color: #2D5A27;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.care-instruction__description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.care-instructions__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.care-instructions__image-container {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 23px;
}

.care-instructions__image-container img {
    width: 100%;
}

/* Usage Tips Section */
.usage-tips {
    padding: 6rem 0;
    background: white;
}

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

.usage-tips__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1.5rem;
}

.usage-tips__description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.usage-tips__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usage-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2D5A27;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usage-tip:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.usage-tip__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.usage-tip__content {
    flex: 1;
}

.usage-tip__title {
    font-size: 1.25rem;
    color: #2D5A27;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.usage-tip__description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.usage-tips__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.usage-tips__image-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .benefits {
        padding: 3rem 0;
    }
    
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .quality-features {
        padding: 3rem 0;
    }
    
    .quality-features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quality-feature {
        padding: 1.5rem;
    }
    
    .care-instructions {
        padding: 3rem 0;
    }
    
    .care-instructions__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .care-instruction {
        flex-direction: column;
        text-align: center;
    }
    
    .care-instruction:hover {
        transform: translateY(-3px);
    }
    
    .usage-tips {
        padding: 3rem 0;
    }
    
    .usage-tips__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .usage-tip {
        flex-direction: column;
        text-align: center;
    }
    
    .usage-tip:hover {
        transform: translateY(-3px);
    }
    
    .knife-types {
        padding: 3rem 0;
    }
    
    .knife-types__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .knife-type {
        padding: 1.5rem;
    }
    
    .maintenance-guide {
        padding: 3rem 0;
    }
    
    .maintenance-guide__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .maintenance-tip {
        flex-direction: column;
        text-align: center;
    }
    
    .maintenance-tip:hover {
        transform: translateY(-3px);
    }
}

/* Knife Types Section */
.knife-types {
    padding: 6rem 0;
    background: #f8f9fa;
}

.knife-types__header {
    text-align: center;
    margin-bottom: 4rem;
}

.knife-types__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.knife-types__description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.knife-type {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.knife-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.knife-type__icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.knife-type__title {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.knife-type__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.knife-type__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.knife-type__feature {
    background: #2D5A27;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Maintenance Guide Section */
.maintenance-guide {
    padding: 6rem 0;
    background: white;
}

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

.maintenance-guide__title {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1.5rem;
}

.maintenance-guide__description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.maintenance-guide__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.maintenance-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2D5A27;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maintenance-tip:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.maintenance-tip__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.maintenance-tip__content {
    flex: 1;
}

.maintenance-tip__title {
    font-size: 1.25rem;
    color: #2D5A27;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.maintenance-tip__description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.maintenance-guide__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintenance-guide__image-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}
