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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.main-nav {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

.nav-links a {
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6b4423;
}

.ad-label {
    background-color: #f5f5f5;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background-color: #fafafa;
}

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

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #6b4423;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #543317;
}

.intro-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-text {
    flex: 1;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b4423;
    font-weight: bold;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #6b4423;
}

.btn-select {
    background-color: #6b4423;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

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

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.form-intro {
    flex: 1;
    padding-right: 2rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.form-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.form-note {
    font-style: italic;
    color: #777;
}

.form-container {
    flex: 1;
    background-color: #fafafa;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: #6b4423;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ccc;
}

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

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

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #ccc;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #252525;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #6b4423;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #543317;
}

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

.btn-reject:hover {
    background-color: #444;
}

.page-hero {
    padding: 5rem 2rem 3rem;
    background-color: #fafafa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.page-hero p {
    font-size: 1.3rem;
    color: #666;
}

.about-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.value-block {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.value-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.team-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.team-intro,
.team-note {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-button {
    display: inline-block;
    background-color: #6b4423;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #543317;
}

.services-detail {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-detail-block {
    display: flex;
    align-items: stretch;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 3rem 4rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b4423;
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6b4423;
}

.service-cta {
    display: inline-block;
    background-color: #6b4423;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #543317;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.pricing-note {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.pricing-note h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.pricing-note p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

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

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

.location-info {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.location-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    padding: 5rem 2rem;
    background-color: #fafafa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-hero {
    padding: 5rem 2rem;
    background-color: #fafafa;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-details {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-service {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.step-item {
    flex: 1;
    padding: 2.5rem;
    background-color: #fafafa;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #6b4423;
}

.step-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-cta {
    padding: 3rem 2rem 5rem;
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #6b4423;
    border: 2px solid #6b4423;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #6b4423;
    color: #ffffff;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.7;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #888;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-split,
    .form-split,
    .about-split,
    .service-detail-block,
    .contact-split {
        flex-direction: column;
    }

    .hero-text,
    .intro-text,
    .service-content,
    .form-intro,
    .about-text,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .trust-grid,
    .values-content,
    .steps-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cta-links {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}