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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b6f47;
    letter-spacing: 1px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
    margin: 0 1rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.hero-image-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    padding: 3rem 4rem;
    border-radius: 2px;
    max-width: 700px;
}

.hero-overlay-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    letter-spacing: 2px;
}

.hero-overlay-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.cta-hero:hover {
    background-color: #6d5637;
}

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

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

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: normal;
}

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

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

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-insight {
    padding: 5rem 2rem;
}

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

.split-layout .text-block {
    flex: 1;
}

.split-layout .image-block {
    flex: 1;
    overflow: hidden;
}

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

.split-layout h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.split-layout p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.trust-builder {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.centered-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.feature-cards {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #8b6f47;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: #f4ebe1;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: #ffffff;
    border-left: 4px solid #8b6f47;
}

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

.testimonial-card cite {
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
}

.services-reveal {
    padding: 6rem 2rem;
}

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

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

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 4rem;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
}

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

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

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

.service-info .price {
    font-size: 1.6rem;
    color: #8b6f47;
    font-weight: bold;
    margin: 1.5rem 0;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.form-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

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

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

.form-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    font-family: 'Georgia', serif;
}

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

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

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

.about-visual {
    padding: 5rem 2rem;
}

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

.about-image {
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 400px;
}

.about-text {
    flex: 1;
}

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

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

.site-footer {
    background-color: #3a3a3a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #555;
    color: #ffffff;
}

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

.page-hero {
    margin-top: 80px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem 3rem;
    text-align: center;
}

.page-hero-overlay h1 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: normal;
}

.content-section {
    padding: 5rem 2rem;
}

.services-page {
    padding: 4rem 2rem;
}

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

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

.service-detail .service-visual {
    flex: 1;
    overflow: hidden;
}

.service-detail .service-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-detail .service-info {
    flex: 1;
    padding: 2rem;
}

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

.service-detail p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.price-large {
    font-size: 2rem;
    color: #8b6f47;
    font-weight: bold;
    margin: 2rem 0;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

.contact-page {
    padding: 5rem 2rem;
    margin-top: 80px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper h1 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c2c2c;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2,
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-note {
    font-style: italic;
    color: #777;
    margin-top: 2rem;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.thanks-section {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    margin-top: 80px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #8b6f47;
}

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

.btn-back,
.btn-services {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.5rem;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-back:hover,
.btn-services:hover {
    background-color: #6d5637;
}

.legal-page {
    padding: 5rem 2rem;
    margin-top: 80px;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

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

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

.legal-content li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-overlay-text {
        padding: 2rem;
    }

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

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

    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

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

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