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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b4513;
}

.ad-label {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.hero-section {
    background-color: #faf8f5;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    background-color: #e8dcc8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.intro-cards {
    padding: 4rem 2rem;
    background-color: #fff;
}

.card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.intro-card {
    flex: 1;
    background-color: #faf8f5;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

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

.intro-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.intro-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #f5f1eb;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-image {
    flex: 1;
    background-color: #d4c5ab;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
}

.benefits-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-card {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-card img {
    width: 400px;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8dcc8;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-content p {
    color: #5a6c7d;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #faf8f5;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 0 0 calc(50% - 1rem);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-image {
    background-color: #e8dcc8;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #6d3510;
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background-color: #faf8f5;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.testimonial-card p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f5f1eb;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e8dcc8;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b4513;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #6d3510;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section ul {
    color: #cbd5e0;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #8b4513;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #6d3510;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-btn.reject:hover {
    background-color: #fff;
    color: #2c3e50;
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem;
    background-color: #faf8f5;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-container .service-name {
    font-weight: 700;
    color: #8b4513;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #8b4513;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-home:hover {
    background-color: #6d3510;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content,
    .story-container,
    .benefit-card {
        flex-direction: column;
    }

    .benefit-card:nth-child(even) {
        flex-direction: column;
    }

    .card-grid,
    .testimonials-grid {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}