* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #8b6f47;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #ffeeba;
}

.ad-label {
    font-size: 12px;
    color: #856404;
    font-weight: 500;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4c5b0;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(139, 111, 71, 0.7) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 650px;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #6d5736;
    transform: translateY(-2px);
}

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.approach-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.two-column-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-column {
    flex: 1;
}

.content-column h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-column p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.image-column {
    flex: 1;
    background-color: #e8e8e8;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview-section {
    background-color: #fafafa;
    padding: 90px 0;
}

.services-preview-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d4c5b0;
}

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

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 15px;
}

.select-service-btn {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cta-centered {
    text-align: center;
    margin-top: 20px;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8b6f47;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #8b6f47;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #8b6f47;
    color: #ffffff;
}

.testimonials-section {
    background-color: #2c3e50;
    padding: 90px 0;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #8b6f47;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    font-style: normal;
    opacity: 0.8;
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 90px 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-wrapper > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #8b6f47;
}

.selected-service-display p {
    margin-bottom: 5px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #6d5736;
}

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

.trust-content h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 25px;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8b6f47;
}

.trust-item p {
    font-size: 15px;
    color: #666;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 50px 0;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #8b6f47;
}

.email-text {
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: #8b6f47;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 30px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.content-wrapper h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

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

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.contact-info-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #8b6f47;
    font-weight: 600;
}

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

.thanks-section {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.thanks-content .selected-service-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #8b6f47;
}

.thanks-content .selected-service-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.thanks-content .selected-service-info p {
    font-size: 16px;
    margin: 5px 0;
}

.back-home-btn {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 30px;
    transition: background-color 0.3s;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

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

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}