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

:root {
    --primary-color: #00d9a3;
    --secondary-color: #00b589;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-light: #e0fffa;
    --bg-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    width: 42px;
    height: 42px;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--bg-white);
    padding: 60px 0 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.hero-left h1 {
    font-size: 82px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-right {
    padding-top: 20px;
}

.hero-right p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 18px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 163, 0.3);
}

/* ===== MEMORY SECTION ===== */
.memory {
    padding: 100px 0;
    background: var(--bg-white);
}

.memory .container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.memory-left img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.memory-right h2 {
    font-size: 54px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 28px;
}

.memory-right p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ===== MEANING SECTION ===== */
.meaning {
    padding: 100px 0;
    background: var(--bg-light);
}

.meaning h2 {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 35px;
}

.meaning-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 28px;
}

.meaning-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 22px;
}

.meaning-conclusion {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 70px;
}

.meaning-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.meaning-images img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* ===== CARROTS SECTION ===== */
.carrots {
    padding: 100px 0;
    background: var(--bg-white);
}

.carrots .container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.carrots-left h2 {
    font-size: 54px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 28px;
}

.carrots-left p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.carrots-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== DESIGN SECTION ===== */
.design {
    padding: 100px 0;
    background: var(--bg-light);
}

.design h2 {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 35px;
}

.design-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 28px;
}

.design-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 22px;
}

.design-conclusion {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 70px;
}

.design-image {
    border-radius: 24px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.design-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 100px 0;
    background: var(--bg-white);
}

.reviews h2 {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 65px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.review-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 20px;
}

.stars {
    color: #ffa500;
    font-size: 22px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.review-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact h2 {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 50px;
}

.contact-box {
    background: var(--bg-white);
    padding: 35px 50px;
    border-radius: 20px;
    max-width: 650px;
    margin: 0 auto 60px;
}

.contact-address {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-email,
.contact-phone {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin: 5px 0;
}

.contact-email:hover,
.contact-phone:hover {
    text-decoration: underline;
}

.contact-image {
    border-radius: 24px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-white);
    padding: 60px 0 35px;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.footer-logo img {
    width: 42px;
    height: 42px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-address {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.footer-contact a {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 10px;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    padding: 28px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 650px;
    width: 90%;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 22px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-accept,
.btn-decline {
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-decline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #ddd;
}

.btn-decline:hover {
    border-color: var(--text-dark);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-left h1 {
        font-size: 68px;
    }

    .memory-right h2,
    .carrots-left h2 {
        font-size: 46px;
    }

    .meaning h2,
    .design h2,
    .reviews h2,
    .contact h2 {
        font-size: 54px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero .container {
        gap: 50px;
    }

    .hero-left h1 {
        font-size: 58px;
        margin-bottom: 35px;
    }

    .memory .container,
    .carrots .container {
        gap: 50px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .nav {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 20px;
        align-items: flex-start;
    }

    .nav.active {
        left: 0;
    }

    .burger {
        display: flex;
    }

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

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

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

    /* Hero Mobile */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-left h1 {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .hero-right {
        padding-top: 0;
    }

    /* Memory Mobile */
    .memory .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .memory-right h2 {
        font-size: 38px;
    }

    /* Carrots Mobile */
    .carrots .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .carrots-left {
        order: 2;
    }

    .carrots-right {
        order: 1;
    }

    .carrots-left h2 {
        font-size: 38px;
    }

    /* Section Titles Mobile */
    .meaning h2,
    .design h2,
    .reviews h2,
    .contact h2 {
        font-size: 42px;
    }

    /* Meaning Mobile */
    .meaning-images {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer Mobile */
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-right p {
        font-size: 15px;
    }

    .btn {
        padding: 15px 32px;
        font-size: 15px;
    }

    .memory-right h2,
    .carrots-left h2 {
        font-size: 32px;
    }

    .meaning h2,
    .design h2,
    .reviews h2,
    .contact h2 {
        font-size: 36px;
    }

    .meaning-intro,
    .meaning-text,
    .meaning-conclusion,
    .design-intro,
    .design-text,
    .design-conclusion {
        font-size: 15px;
    }

    .review-card {
        padding: 25px;
    }

    .contact-box {
        padding: 28px 30px;
    }

    .cookie-popup {
        bottom: 20px;
        padding: 22px 28px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-accept,
    .btn-decline {
        width: 100%;
    }
}