
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #f70025;
            --cream: #f7efe2;
            --orange: #f25c00;
            --yellow: #f9a603;
            --text-dark: #2c2c2c;
            --text-light: #666;
            --white: #ffffff;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        
        .header {
            background-color: var(--white);
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header__container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header__logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-red);
            text-decoration: none;
        }

        .header__nav {
            display: flex;
        }

        .header__nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .header__nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .header__nav-link:hover {
            color: var(--primary-red);
        }

        .header__burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .header__burger-line {
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            transition: 0.3s;
        }

        
        .hero {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
            padding: 4rem 0;
            text-align: center;
        }

        .hero__title {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .hero__subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero__image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        
        .collections {
            padding: 4rem 0;
            background-color: var(--white);
        }

        .collections__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .collections__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .collections__item {
            background: linear-gradient(135deg, var(--cream), var(--white));
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .collections__item:hover {
            transform: translateY(-8px);
        }

        .collections__item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red), var(--orange), var(--yellow));
        }

        .collections__item:nth-child(2n)::before {
            background: linear-gradient(90deg, var(--orange), var(--yellow), var(--primary-red));
        }

        .collections__item:nth-child(3n)::before {
            background: linear-gradient(90deg, var(--yellow), var(--primary-red), var(--orange));
        }

        .collections__emoji {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .collections__name {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .collections__count {
            background-color: var(--orange);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .collections__desc {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        
        .uniqueness {
            padding: 4rem 0;
            background-color: var(--cream);
        }

        .uniqueness__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .uniqueness__container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .uniqueness__feature {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            border-left: 6px solid var(--primary-red);
            transition: all 0.3s ease;
        }

        .uniqueness__feature:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

        .uniqueness__feature:nth-child(2n) {
            border-left-color: var(--orange);
        }

        .uniqueness__feature:nth-child(3n) {
            border-left-color: var(--yellow);
        }

        .uniqueness__feature-title {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .uniqueness__feature-text {
            color: var(--text-light);
            line-height: 1.6;
        }

        .uniqueness__stats {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
        }

        .uniqueness__stat {
            margin-bottom: 2rem;
        }

        .uniqueness__stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-red);
            display: block;
        }

        .uniqueness__stat-label {
            color: var(--text-dark);
            font-weight: 500;
            margin-top: 0.5rem;
        }

        .uniqueness__stat-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        
        .seed-categories {
            padding: 4rem 0;
            background-color: var(--white);
        }

        .seed-categories__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .seed-categories__wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .seed-categories__main {
            grid-column: span 2;
        }

        .seed-categories__primary {
            background: linear-gradient(135deg, var(--primary-red), var(--orange));
            color: var(--white);
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            height: 100%;
        }

        .seed-categories__primary-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .seed-categories__primary-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .seed-categories__primary-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .seed-categories__primary-feature {
            background-color: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
        }

        .seed-categories__secondary {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .seed-categories__card {
            background-color: var(--cream);
            padding: 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .seed-categories__card:hover {
            background-color: var(--white);
            transform: scale(1.02);
        }

        .seed-categories__card-title {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .seed-categories__card-count {
            color: var(--orange);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .seed-categories__card-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        
        .customer-experience {
            padding: 4rem 0;
            background-color: var(--cream);
        }

        .customer-experience__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .customer-experience__timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .customer-experience__timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-red), var(--orange), var(--yellow));
            transform: translateX(-50%);
        }

        .customer-experience__step {
            position: relative;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
        }

        .customer-experience__step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .customer-experience__step::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 20px;
            height: 20px;
            background-color: var(--white);
            border: 4px solid var(--orange);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .customer-experience__content {
            width: 45%;
            background-color: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .customer-experience__step-title {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .customer-experience__step-desc {
            color: var(--text-light);
            line-height: 1.6;
        }

        .customer-experience__number {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--orange);
            color: var(--white);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
            z-index: 2;
        }

        
        .quality-process {
            padding: 4rem 0;
            background-color: var(--white);
        }

        .quality-process__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .quality-process__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .quality-process__main {
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            color: var(--white);
            padding: 1rem;
            border-radius: 15px;
        }

        .quality-process__main-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .quality-process__main-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .quality-process__guarantee {
            background-color: rgba(255,255,255,0.2);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
        }

        .quality-process__guarantee-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .quality-process__guarantee-text {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .quality-process__steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .quality-process__step {
            background-color: var(--cream);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-red);
            transition: all 0.3s ease;
        }

        .quality-process__step:hover {
            background-color: var(--white);
            transform: translateX(5px);
        }

        .quality-process__step:nth-child(2n) {
            border-left-color: var(--orange);
        }

        .quality-process__step:nth-child(3n) {
            border-left-color: var(--yellow);
        }

        .quality-process__step-number {
            background-color: var(--primary-red);
            color: var(--white);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .quality-process__step:nth-child(2n) .quality-process__step-number {
            background-color: var(--orange);
        }

        .quality-process__step:nth-child(3n) .quality-process__step-number {
            background-color: var(--yellow);
        }

        .quality-process__step-title {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .quality-process__step-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        
        .faq {
            padding: 4rem 0;
            background-color: var(--cream);
        }

        .faq__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .faq__container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq__item {
            background-color: var(--white);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .faq__question {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq__question:hover {
            background-color: var(--cream);
        }

        .faq__question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--orange);
            transition: transform 0.3s ease;
        }

        .faq__question.active::after {
            transform: rotate(45deg);
        }

        .faq__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq__answer.active {
            max-height: 200px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq__answer-text {
            color: var(--text-light);
            line-height: 1.6;
        }

        
        .footer {
            background-color: var(--text-dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer__content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer__section h3 {
            color: var(--primary-red);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer__links {
            list-style: none;
        }

        .footer__links li {
            margin-bottom: 0.5rem;
        }

        .footer__links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer__links a:hover {
            color: var(--primary-red);
        }

        .footer__bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: var(--text-light);
        }

        
        @media (max-width: 768px) {
            .header__nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--white);
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                flex-direction: column;
                padding: 1rem;
            }

            .header__nav--active {
                display: flex;
            }

            .header__nav-list {
                flex-direction: column;
                gap: 1rem;
            }

            .header__burger {
                display: flex;
            }

            .hero__title {
                font-size: 2rem;
            }

            .collections__grid {
                grid-template-columns: 1fr;
            }

            .uniqueness__container {
                grid-template-columns: 1fr;
            }

            .seed-categories__wrapper {
                grid-template-columns: 1fr;
            }

            .seed-categories__main {
                grid-column: span 1;
            }

            .customer-experience__timeline::before {
                left: 20px;
            }

            .customer-experience__step {
                flex-direction: row !important;
                padding-left: 50px;
            }

            .customer-experience__step::before {
                left: 20px;
            }

            .customer-experience__number {
                left: 20px;
            }

            .customer-experience__content {
                width: 100%;
            }

            .quality-process__grid {
                grid-template-columns: 1fr;
            }

            .collections__title,
            .uniqueness__title,
            .seed-categories__title,
            .customer-experience__title,
            .quality-process__title,
            .faq__title {
                font-size: 2rem;
            }
        }