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

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

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

.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3e2723;
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #6d4c41;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
}

.ad-label-mobile {
    font-size: 12px;
    color: #666;
    padding: 8px 0;
}

.mobile-menu.active {
    display: flex;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #fff;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background-color: #6d4c41;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #5d4037;
}

.intro-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #3e2723;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.services-cards {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #3e2723;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 250px;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3e2723;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #6d4c41;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    background-color: #3e2723;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #5d4037;
}

.story-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #3e2723;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.btn-link {
    display: inline-block;
    color: #6d4c41;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #6d4c41;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.btn-link:hover {
    color: #5d4037;
    border-color: #5d4037;
}

.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: #3e2723;
}

.form-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6d4c41;
}

.form-group input[readonly] {
    background-color: #e0e0e0;
}

.btn-submit {
    background-color: #6d4c41;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #5d4037;
}

.trust-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #3e2723;
}

.testimonials-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #6d4c41;
}

.footer {
    background-color: #3e2723;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #5d4037;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    max-width: 800px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3e2723;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background-color: #fff;
    color: #3e2723;
}

.btn-cookie:hover {
    background-color: #f5f5f5;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.thanks-container {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    padding: 40px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #3e2723;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.thanks-service {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #6d4c41;
}

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #3e2723;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #3e2723;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3e2723;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #3e2723;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3e2723;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-hero {
    padding: 80px 0;
    background-color: #fafafa;
}

.about-hero h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 30px;
    color: #3e2723;
}

.about-hero p {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.about-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3e2723;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.services-hero {
    padding: 80px 0;
    background-color: #fafafa;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3e2723;
}

.services-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

.services-content {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cards-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .story-layout {
        flex-direction: column;
    }

    .story-image {
        flex: 0 0 100%;
    }

    .testimonials-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .about-section,
    .about-section:nth-child(even) {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 100%;
    }
}