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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background-color: #fafafa;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.nav-menu a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #6a5a4a;
}

.hero-fullwidth {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
}

.hero-overlay h1 {
    font-size: 4rem;
    color: #ffffff;
    max-width: 700px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #f0f0f0;
    max-width: 600px;
    font-weight: 300;
}

.intro-narrative {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.narrow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d2d2d;
    line-height: 1.3;
}

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

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #f8f6f3;
}

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

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

.trust-building {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.centered-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.lead-text {
    font-size: 1.3rem;
    color: #5a5a5a;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #f8f6f3;
    border-radius: 6px;
    text-align: left;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.feature-card p {
    font-size: 1rem;
    color: #5a5a5a;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #2d2d2d;
}

.testimonials-inline blockquote {
    border-left: 4px solid #8b7355;
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.testimonials-inline p {
    font-size: 1.25rem;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonials-inline cite {
    color: #b0b0b0;
    font-style: normal;
    font-size: 1rem;
}

.services-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.full-width-content {
    max-width: 1400px;
    margin: 0 auto;
}

.full-width-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.service-item {
    flex: 1;
    min-width: 350px;
    background-color: #f8f6f3;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-4px);
}

.service-item img {
    width: 100%;
    display: block;
}

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.service-details p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6a5a4a;
    margin: 1.5rem 0;
}

.btn-select {
    background-color: #6a5a4a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
}

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

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

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.form-intro {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

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

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

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

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

.btn-submit {
    background-color: #6a5a4a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 600;
}

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

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

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

.centered-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.centered-content p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-weight: 600;
}

.btn-cta-large:hover {
    background-color: #7a6345;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

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

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

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

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

.footer-col p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.footer-email {
    color: #8b7355;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px 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;
    flex-wrap: wrap;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-accept {
    background-color: #8b7355;
    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: #2d2d2d;
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #d0d0d0;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-image-section {
    padding: 0;
}

.about-image-section img {
    width: 100%;
    display: block;
}

.about-values {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    text-align: left;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

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

.about-process {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-team {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
}

.team-description {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: left;
}

.team-description p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-commitment {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

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

.service-detail-image img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

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

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

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

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #5a5a5a;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #6a5a4a;
    margin: 1.5rem 0;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-main {
    flex: 2;
}

.contact-main h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d2d2d;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.contact-item p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.email-display {
    color: #8b7355;
    font-weight: 500;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.5rem;
}

.hours-table {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.hours-table td {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 500;
}

.contact-side {
    flex: 1;
}

.contact-side h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.info-box {
    background-color: #f8f6f3;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.info-box p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.contact-map-placeholder {
    padding: 3rem 2rem;
    background-color: #f8f6f3;
    text-align: center;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
}

.map-info p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

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

.btn-cta {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-weight: 600;
}

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

.thanks-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
    min-height: 50vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f8f6f3;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #2d2d2d;
}

.thanks-info {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.btn-primary {
    display: inline-block;
    background-color: #6a5a4a;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #5a4a3a;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #6a5a4a;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #6a5a4a;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #6a5a4a;
    color: #ffffff;
}

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

.steps-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.step-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

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

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

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

.cookies-table td {
    font-size: 0.95rem;
    color: #4a4a4a;
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
    }

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

    .service-item {
        min-width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
