@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --accent: #CD853F;
    --bg-warm: #FDF5E6;
    --bg-cream: #FFFAF0;
    --text-dark: #3E2723;
    --text-light: #5D4037;
    --white: #FFFFFF;
    --border: #DEB887;
    --shadow: rgba(139, 69, 19, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    position: fixed;
    background: rgba(253, 245, 230, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 22px;
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    position: absolute;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.main-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(210, 105, 30, 0.05));
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hero-text h1 span {
    color: var(--secondary);
}

.hero-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 50px var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow);
}

.hero-badge i {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 5px;
}

.hero-badge span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-cream);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--border);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card i {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
}

.features-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.features-section .section-header h2,
.features-section .section-header p {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.feature-item i {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--bg-warm);
}

.feature-item h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 12px;
    opacity: 0.9;
}

.about-section {
    background: var(--bg-warm);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 10px;
}

.about-list i {
    color: var(--secondary);
    font-size: 14px;
}

.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--border);
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author i {
    font-size: 28px;
    color: var(--secondary);
}

.testimonial-author span {
    font-size: 13px;
    font-weight: 600;
}

.cta-section {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--secondary);
}

.cta-section .btn-primary:hover {
    background: var(--accent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
    height: 180px;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 60px;
    color: var(--border);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--text-light);
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 35px;
    border-radius: 10px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item i {
    font-size: 18px;
    color: var(--bg-warm);
    margin-top: 2px;
}

.contact-item span {
    font-size: 13px;
}

.contact-form-wrapper {
    background: var(--bg-cream);
    padding: 35px;
    border-radius: 10px;
}

.contact-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--secondary);
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--secondary);
    text-decoration: underline;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
}

.copyright {
    font-size: 11px;
    opacity: 0.7;
}

.privacy-links {
    display: flex;
    gap: 15px;
}

.privacy-links a {
    font-size: 11px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.privacy-links a:hover {
    opacity: 1;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 18px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--white);
    border: none;
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-cream);
    height: 100vh;
}

.error-content,
.thankyou-content {
    padding: 40px 20px;
}

.error-content i,
.thankyou-content i {
    font-size: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-content h2,
.thankyou-content h1 {
    font-size: 26px;
    margin-bottom: 12px;
}

.error-content p,
.thankyou-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.policy-section {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

.policy-content h3 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.policy-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    list-style: disc;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    display: flex;
    flex-direction: column;
}

.event-icon {
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-icon i {
    font-size: 50px;
    color: var(--white);
}

.event-info {
    padding: 20px;
}

.event-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.event-info p {
    font-size: 12px;
    color: var(--text-light);
}

.team-section {
    background: var(--bg-warm);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
}

.team-card i {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.value-card i {
    font-size: 28px;
    color: var(--secondary);
}

.value-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
}

.timeline-section {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding: 20px 0;
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-content {
    background: var(--bg-cream);
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    max-width: 250px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
}

.timeline-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 12px;
    color: var(--text-light);
}

.tips-section {
    background: var(--bg-cream);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.tip-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-card h3 i {
    color: var(--secondary);
}

.tip-card p {
    font-size: 12px;
    color: var(--text-light);
}

.seasons-section {
    background: var(--white);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.season-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-card.spring {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.season-card.summer {
    background: linear-gradient(135deg, #FFF8E1, #FFECB3);
}

.season-card.autumn {
    background: linear-gradient(135deg, #FBE9E7, #FFCCBC);
}

.season-card.winter {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}

.season-card i {
    font-size: 36px;
    margin-bottom: 12px;
}

.season-card.spring i {
    color: #4CAF50;
}

.season-card.summer i {
    color: #FFC107;
}

.season-card.autumn i {
    color: #FF5722;
}

.season-card.winter i {
    color: #2196F3;
}

.season-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.season-card p {
    font-size: 11px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-cream);
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px var(--shadow);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid var(--border);
    }
    
    .main-nav a {
        display: block;
        padding: 12px 0;
        font-size: 14px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .products-grid,
    .events-grid,
    .tips-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links,
    .privacy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 50px;
        justify-content: flex-start;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -30px;
    }
    
    .timeline-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 26px;
    }
    
    .hero-text p {
        font-size: 13px;
    }
    
    .btn {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .service-card,
    .feature-item {
        padding: 20px 15px;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .features-grid,
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .error-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 320px) {
    .logo {
        font-size: 16px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}
