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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1.2rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #3a3a3a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-label {
    background-color: #e8dfd5;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    border-radius: 4px;
    color: #6b5d52;
    font-weight: 500;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

.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(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 4rem;
    color: white;
}

.hero-overlay h1 {
    font-size: 4.2rem;
    font-weight: 300;
    max-width: 700px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-overlay p {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 500px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.intro-story {
    padding: 6rem 2rem;
    background-color: #fff;
}

.story-text {
    max-width: 750px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: #4a4a4a;
}

.visual-break {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-reveal {
    padding: 7rem 2rem;
    background-color: #f5f0eb;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 1.12rem;
    margin-bottom: 1.6rem;
    color: #4a4a4a;
}

.services-showcase {
    padding: 7rem 2rem;
    background-color: #fff;
}

.services-showcase h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 420px;
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 1.5rem 1.5rem;
    color: #8b7355;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #2c2c2c;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #8b7355;
}

.trust-building {
    padding: 7rem 2rem;
    background-color: #f9f7f5;
}

.trust-building h2 {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.testimonial {
    max-width: 680px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #8b7355;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.testimonial .author {
    display: block;
    font-size: 0.95rem;
    color: #7a7a7a;
    font-style: normal;
}

.form-section {
    padding: 7rem 2rem;
    background-color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: #3a3a3a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    background-color: #fafafa;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: #2c2c2c;
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.final-cta {
    padding: 7rem 2rem;
    background-color: #2c2c2c;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #8b7355;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #a68968;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f5f0eb;
}

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

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

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

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

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

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #8b7355;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #909090;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28, 28, 28, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px 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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.8rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-accept {
    background-color: #8b7355;
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    margin-top: 70px;
    padding: 5rem 2rem 3rem;
    background-color: #f5f0eb;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.about-content {
    padding: 6rem 2rem;
    background-color: #fff;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.content-image {
    flex: 1;
}

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

.philosophy-section {
    padding: 6rem 2rem;
    background-color: #f9f7f5;
}

.visual-section {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.visual-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #fafafa;
}

.value-item h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #f5f0eb;
}

.services-detail {
    padding: 5rem 2rem;
    background-color: #fff;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 6rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 1.5rem 0 2rem 1.5rem;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #5a5a5a;
}

.service-detail-image {
    flex: 1;
}

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

.price-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

.price-label {
    font-size: 1rem;
    color: #6a6a6a;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b7355;
}

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

.cta-section .cta-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-cta {
    padding: 5rem 2rem;
    background-color: #f9f7f5;
}

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

.contact-cta .cta-content h2 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.contact-cta .cta-content ul {
    margin: 1.5rem 0 2rem 1.8rem;
}

.contact-cta .cta-content ul li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #5a5a5a;
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: #f9f7f5;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.confirmation-details {
    background-color: #fff;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #8b7355;
}

.confirmation-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.confirmation-details p:last-child {
    margin-bottom: 0;
}

#serviceConfirmation {
    font-weight: 600;
    color: #8b7355;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.next-steps ul {
    margin-left: 1.5rem;
}

.next-steps ul li {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: white;
}

.legal-content {
    padding: 4rem 2rem 6rem;
    background-color: #fff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 1.8rem;
}

.legal-text ul li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #5a5a5a;
}

.legal-text a {
    color: #8b7355;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #a68968;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    font-size: 0.95rem;
    color: #7a7a7a;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f5f0eb;
    font-weight: 600;
    color: #2c2c2c;
}

.cookies-table td {
    font-size: 1rem;
    color: #5a5a5a;
}

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .content-split,
    .contact-layout,
    .service-detail-item {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

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

    .values-grid {
        gap: 2rem;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

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