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

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #2c1810;
    overflow-x: hidden;
}

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

.animate-from-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-from-bottom.animated {
    opacity: 1;
    transform: translateY(0);
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

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

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

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

.nav-link {
    text-decoration: none;
    color: #2c1810;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

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

.burger span {
    width: 25px;
    height: 3px;
    background: #2c1810;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 50%, #ffe082 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.honey-drip {
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
    animation: drip 3s ease-in-out infinite;
}

.honey-drip-1 {
    left: 20%;
    height: 100px;
    animation-delay: 0s;
}

.honey-drip-2 {
    left: 50%;
    height: 150px;
    animation-delay: 1s;
}

.honey-drip-3 {
    left: 80%;
    height: 120px;
    animation-delay: 2s;
}

@keyframes drip {
    0%, 100% { transform: translateY(-100px); opacity: 0; }
    50% { transform: translateY(0); opacity: 1; }
}

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

.hero-title {
    font-size: 3.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: #d4af37;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

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

.honey-jar {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.jar-image {
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(139, 69, 19, 0.3));
}

.honey-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.honey-showcase {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #8B4513;
    margin-bottom: 1rem;
    width: 100%;
}
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.showcase-tabs {
    background: #fffaf0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 1.5rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: white;
    color: #8B4513;
    box-shadow: 0 -3px 0 #d4af37 inset;
}

.tab-btn:hover:not(.active) {
    background: rgba(212, 175, 55, 0.1);
}

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

.tab-content {
    padding: 3rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pane-images {
    display: grid;
    grid-template-areas: 
        "main main secondary"
        "main main tertiary";
    gap: 1rem;
}

.pane-main-image {
    grid-area: main;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pane-secondary-image {
    grid-area: secondary;
    width: 100%;
    border-radius: 10px;
}

.pane-tertiary-image {
    grid-area: tertiary;
    width: 100%;
    border-radius: 10px;
}

.pane-info h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.honey-specs {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.spec-label {
    font-weight: 600;
    color: #8B4513;
}

.spec-value {
    color: #666;
}

.process-timeline {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #fffaf0 100%);
}

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

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

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #d4af37;
    border: 4px solid white;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 2rem;
    text-align: center;
}

.timeline-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

.honey-carousel {
    padding: 100px 0;
    background: white;
}

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

.carousel-track {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.season-tag {
    background: #d4af37;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    background: #d4af37;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #b8941f;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

.health-metrics {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #ffecb3 100%);
}

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

.metric-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.metric-data {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
}

.metric-unit {
    font-size: 1.5rem;
    color: #8B4513;
}

.metric-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.beehive-structure {
    padding: 100px 0;
    background: white;
}

.hive-diagram {
    max-width: 600px;
    margin: 0 auto;
}

.hive-layer {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    background: #f8f8f8;
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.hive-layer:hover {
    background: #fffaf0;
    transform: translateX(10px);
}
@media (max-width: 768px) {
    .hive-layer {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .layer-icon {
        font-size: 2rem;
    }
    
    .layer-info h3 {
        margin-bottom: 0.5rem;
    }
    
    .layer-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}
.layer-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.layer-info h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.recipe-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #fffaf0 100%);
}

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

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-content {
    padding: 1.5rem;
}

.recipe-content h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.difficulty {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

.difficulty.easy {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.sustainability {
    padding: 100px 0;
    background: white;
}

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

.sustainability-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

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

.sustainability-visual {
    position: relative;
}

.sustainability-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.eco-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #ffecb3 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author strong {
    color: #8B4513;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

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

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

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

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

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

.footer {
    background: #2c1810;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.link-group ul {
    list-style: none;
}

.link-group a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 0.3rem 0;
}

.link-group a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .tab-buttons {
        grid-template-columns: 1fr 1fr;
    }
    
    .tab-pane.active {
        grid-template-columns: 1fr;
    }
    
    .pane-images {
        grid-template-areas: 
            "main"
            "secondary"
            "tertiary";
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .sustainability-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .tab-buttons {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .carousel-track {
        height: 400px;
    }
}
@media (min-width: 769px) {
    .timeline-marker {
        display: none;
    }
}

@media (max-width: 768px) {
    .timeline-marker {
        display: block;
    }
}
@media (max-width: 768px) {
    .spec-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .spec-label,
    .spec-value {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .pane-info h3,
    .timeline-content h3,
    .metric-card h3,
    .layer-info h3,
    .recipe-content h3 {
        text-align: center;
    }
}
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    overflow: hidden;
}

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

.about-title {
    font-size: 3.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.floating-images {
    position: relative;
    height: 400px;
}

.floating-img {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.img-1 {
    top: 0;
    left: 0;
    width: 60%;
    z-index: 3;
}

.img-2 {
    top: 20%;
    right: 0;
    width: 50%;
    z-index: 2;
}

.img-3 {
    bottom: 0;
    left: 20%;
    width: 55%;
    z-index: 1;
}

.mission-vision {
    padding: 100px 0;
    background: white;
}

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

.mission-card {
    background: #fffaf0;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.mission-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.history-timeline {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #fffaf0 100%);
}

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

.timeline-item-vertical {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.timeline-item-vertical:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #d4af37;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content-vertical {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex: 1;
}

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

.team-grid {
    padding: 100px 0;
    background: white;
}

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

.team-member {
    background: #fffaf0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: filter 0.3s;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(139, 69, 19, 0.1));
}

.member-info {
    padding: 2rem;
}

.member-role {
    color: #d4af37;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.values-detailed {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #ffecb3 100%);
}

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

.accordion-header {
    width: 100%;
    padding: 2rem;
    border: none;
    background: white;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B4513;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s;
}

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

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

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

.accordion-content.active {
    padding: 2rem;
    max-height: 1000px;
}

.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #666;
}

.accordion-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .accordion-content img {
        height: 180px;
        order: -1;
    }
    
    .accordion-header {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .accordion-content.active {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .accordion-header {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .accordion-content.active {
        padding: 1.2rem;
    }
    
    .content-text p {
        font-size: 0.9rem;
    }
}

.process-tabs {
    padding: 100px 0;
    background: white;
}

.philosophy-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

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

.philosophy-btn {
    padding: 1rem 2rem;
    border: 2px solid #d4af37;
    background: white;
    color: #8B4513;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.philosophy-btn.active {
    background: #d4af37;
    color: white;
}

.philosophy-pane {
    display: none;
}

.philosophy-pane.active {
    display: block;
}

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

.pane-text h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.pane-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pane-text li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pane-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.community-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #fffaf0 100%);
}

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

.impact-stat {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 1rem;
}

.future-plans {
    padding: 100px 0;
    background: white;
}

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

.future-list {
    list-style: none;
    margin: 2rem 0;
}

.future-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.future-visual {
    position: relative;
}

.future-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .floating-images {
        height: 300px;
    }
    
    .timeline-item-vertical {
        flex-direction: column !important;
        text-align: center;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .philosophy-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .pane-content {
        grid-template-columns: 1fr;
    }
    
    .future-content {
        grid-template-columns: 1fr;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .floating-images {
        height: 250px;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .philosophy-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

section {
    width: 100%;
    overflow: hidden;
}

.floating-img,
.map-base,
.carousel-slide img,
.team-slide img {
    max-width: 100%;
}

.floating-images {
    position: relative;
    height: 400px;
    width: 100%;
}

.floating-img {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.img-1 {
    top: 0;
    left: 0;
    width: 60%;
    z-index: 3;
}

.img-2 {
    top: 20%;
    right: 0;
    width: 50%;
    z-index: 2;
}

.img-3 {
    bottom: 0;
    left: 20%;
    width: 55%;
    z-index: 1;
}
@media (max-width: 768px) {
    .floating-images {
        height: 300px;
    }
    
    .img-1, .img-2, .img-3 {
        width: 80%;
        left: 10%;
        right: 10%;
    }
    
    .img-1 { top: 0; }
    .img-2 { top: 33%; }
    .img-3 { top: 66%; }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .floating-images {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-img {
        position: relative !important;
        width: 100% !important;
        height: 150px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }
}
.future-plans {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #ffecb3 100%);
}

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

.future-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

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

.feature-content h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.visual-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(139, 69, 19, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.visual-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .future-content {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .visual-container img {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .visual-container img {
        height: 250px;
    }
}
.production-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    overflow: hidden;
}

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

.production-title {
    font-size: 3.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.production-subtitle {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.production-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.process-animation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.animation-step {
    text-align: center;
    flex: 1;
}

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

.step-label {
    font-weight: 600;
    color: #8B4513;
}

.process-steps {
    padding: 100px 0;
    background: white;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #fffaf0;
    border-radius: 20px;
    border-left: 5px solid #d4af37;
}

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

.step-content {
    flex: 1;
}

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

.step-content img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-top: 1rem;
}

.quality-lab {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #fffaf0 100%);
}

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

.quality-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.quality-metric {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
}

.lab-equipment {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.equipment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(139, 69, 19, 0.8));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.sustainable-features {
    padding: 100px 0;
    background: white;
}

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

.feature-card {
    background: #fffaf0;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.feature-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.production-comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #ffecb3 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-column {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-column h3 {
    color: #8B4513;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

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

.method-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.method-list li:before {
    content: "✓";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.seasonal-calendar {
    padding: 100px 0;
    background: white;
}

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

.season-card {
    background: #fffaf0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.season-header {
    background: #d4af37;
    color: white;
    padding: 2rem;
    text-align: center;
}

.season-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.season-months {
    opacity: 0.9;
}

.season-content {
    padding: 2rem;
}

.season-content img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
}

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

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

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

/* Исправления для проблем */
@media (max-width: 768px) {
    .production-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .production-title {
        font-size: 2.5rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .lab-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .process-animation {
        flex-direction: column;
        gap: 2rem;
    }
    
    .quality-metrics {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-container {
        grid-template-columns: 1fr;
    }
    
    .season-content img {
        height: 120px;
    }
    
    .process-step {
        padding: 1.5rem;
    }
}
.lab-value {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 0.5rem;
}
.benefits-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

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

.benefits-title {
    font-size: 3.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.benefits-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.key-benefits {
    padding: 100px 0;
    background: white;
}

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

.benefit-card {
    background: #fffaf0;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.benefit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.nutritional-facts {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #fffaf0 100%);
}

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

.nutrient-list {
    margin-top: 2rem;
}

.nutrient-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.nutrient-name {
    font-weight: 600;
    color: #8B4513;
}

.nutrient-desc {
    color: #666;
    font-size: 0.9rem;
}

.nutrition-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.healing-properties {
    padding: 100px 0;
    background: white;
}

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

.healing-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: #fffaf0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.healing-content {
    padding: 2rem 2rem 2rem 0;
}

.healing-content h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.honey-comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #ffecb3 100%);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-factor {
    font-weight: 600;
    color: #8B4513;
}

.comparison-raw {
    color: #4caf50;
    font-weight: 500;
}

.comparison-processed {
    color: #f44336;
    font-weight: 500;
}

.daily-usage {
    padding: 100px 0;
    background: white;
}

.usage-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.usage-tip {
    text-align: center;
    padding: 2rem;
    background: #fffaf0;
    border-radius: 15px;
}

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

.usage-tip h4 {
    color: #8B4513;
    margin-bottom: 1rem;
}

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

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

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

@media (max-width: 768px) {
    .benefits-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .benefits-title {
        font-size: 2.5rem;
    }
    
    .nutrition-content {
        grid-template-columns: 1fr;
    }
    
    .healing-card {
        grid-template-columns: 1fr;
    }
    
    .healing-content {
        padding: 2rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .healing-grid {
        grid-template-columns: 1fr;
    }
    
    .usage-tips {
        grid-template-columns: 1fr;
    }
    
    .nutrient-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
.apiary-journey {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

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

.journey-title {
    font-size: 3.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.journey-subtitle {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 2rem;
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 2px solid #d4af37;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #8B4513;
    font-size: 0.9rem;
}

.hive-showcase img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.bee-ethics {
    padding: 100px 0;
    background: white;
}

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

.ethics-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ethics-principles {
    margin-top: 2rem;
}

.principle {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fffaf0;
    border-radius: 10px;
}

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

.principle-content h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.hive-types {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #fffaf0 100%);
}

.hive-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hive-type {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

.hive-info {
    padding: 1.5rem;
}

.hive-info h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.hive-info ul {
    list-style: none;
    margin-top: 1rem;
}

.hive-info li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.hive-info li:before {
    content: "✓";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bee-knowledge {
    padding: 100px 0;
    background: white;
}

.knowledge-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.knowledge-item {
    background: #fffaf0;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

.knowledge-item h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.seasonal-guide {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #ffecb3 100%);
}

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

.season-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.season-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.season-card h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.season-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

.guide-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.conservation-mission {
    padding: 100px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #fffaf0;
    border-radius: 15px;
    border-top: 5px solid #d4af37;
}

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

.mission-content h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

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

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

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

@media (max-width: 768px) {
    .journey-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .journey-title {
        font-size: 2.5rem;
    }
    
    .journey-stats {
        grid-template-columns: 1fr;
    }
    
    .ethics-content {
        grid-template-columns: 1fr;
    }
    
    .guide-content {
        grid-template-columns: 1fr;
    }
    
    .hive-comparison {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .principle {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .mission-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .principle-icon,
    .mission-icon {
        margin-bottom: 1rem; 
    }
    
    .journey-stats {
        grid-template-columns: 1fr;
    }
    
    .knowledge-content {
        grid-template-columns: 1fr;
    }
    
    .season-cards {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}
.seasonal-guide {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #ffecb3 100%);
}

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

.guide-visual {
    margin-top: 80px; 
}

.guide-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .guide-content {
        grid-template-columns: 1fr;
    }
    
    .guide-visual {
        margin-top: 40px;
    }
    
    .guide-visual img {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .guide-visual {
        margin-top: 30px;
    }
    
    .guide-visual img {
        height: 250px;
    }
}
.legal-page {
    padding: 120px 0 80px;
    background: #f8f8f8;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-content h1 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.last-updated {
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-section h2 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
}
.thank-you-page {
    padding: 0;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 35%;
}

.thank-you-content {
    text-align: left;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
}

.thank-you-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
    text-align: center; 
    display: block;
}

.thank-you-content h1 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .thank-you-page {
        justify-content: center;
        padding-left: 0;
    }
    
    .thank-you-content {
        text-align: center;
        margin: 1rem auto;
        padding: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .thank-you-content {
        padding: 1.5rem;
    }
    
    .thank-you-icon {
        font-size: 3rem;
    }
    
    .thank-you-content h1 {
        font-size: 1.8rem;
    }
}
.recipes-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    text-align: center;
}

.recipes-title {
    font-size: 3.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.recipes-subtitle {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.recipes-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.featured-recipes {
    padding: 100px 0;
    background: white;
}

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

.recipe-card {
    background: #fffaf0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.recipe-content {
    padding: 1.5rem;
}

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

.recipe-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.time, .difficulty {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.time {
    background: #e3f2fd;
    color: #1976d2;
}

.difficulty.easy {
    background: #e8f5e8;
    color: #4caf50;
}

.difficulty.medium {
    background: #fff3e0;
    color: #ff9800;
}

.recipe-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #fffaf0 100%);
}

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

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

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

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

.category-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.recipe-detail {
    padding: 100px 0;
    background: white;
}

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

.ingredients, .instructions {
    margin-bottom: 2rem;
}

.ingredients h4, .instructions h4 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.ingredients ul, .instructions ol {
    margin-left: 1.5rem;
}

.ingredients li, .instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.detail-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cooking-tips {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #ffecb3 100%);
}

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

.tip-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0; /* Добавил границу */
}

.tip-header {
    width: 100%;
    padding: 1.5rem;
    border: none;
    background: white;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B4513;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.tip-header:hover {
    background: #fffaf0;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.tip-header.active .accordion-icon {
    transform: rotate(45deg);
    color: #8B4513;
}

.tip-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa; /* Добавил фон для контента */
    margin: 0; /* Убрал внешние отступы */
}

.tip-content.active {
    padding: 1.5rem; /* Добавил отступы со всех сторон */
    max-height: 200px;
    border-top: 1px solid #e0e0e0; /* Разделительная линия */
}

.tip-content p {
    margin: 0; /* Убрал отступ у параграфа */
    line-height: 1.6;
    color: #666;
}

.seasonal-recipes {
    padding: 100px 0;
    background: white;
}

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

.seasonal-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.seasonal-list {
    margin-top: 2rem;
}

.season-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.season-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.season-item h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

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

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

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

@media (max-width: 768px) {
    .recipes-title {
        font-size: 2.5rem;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-content {
        grid-template-columns: 1fr;
    }
    
    .seasonal-content {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tip-header {
        padding: 1.2rem;
    }
    
    .tip-content.active {
        padding: 1.2rem;
    }
}

@media (max-width: 320px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .seasonal-list {
        margin-top: 1.5rem;
    }
    
    .recipe-image img {
        height: 200px;
    }
    
    .tip-header {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .tip-content.active {
        padding: 1rem;
    }
}
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 320px) {
    .feature-item {
        align-items: center; 
    }
    
    .feature-icon {
        margin-bottom: 0.5rem;
    }
}