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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b7355;
    --accent-color: #c9a86a;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--bg-light);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 600px;
}

.narrative-intro {
    padding: 100px 10%;
    background-color: var(--bg-white);
}

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

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

.content-centered {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.lead-text {
    font-size: 28px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.narrative-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.visual-insight {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

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

.visual-block {
    flex: 1;
    background-color: var(--bg-light);
}

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

.text-block {
    flex: 1;
    padding: 40px;
}

.text-block h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.text-block p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-amplification {
    padding: 100px 10%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.problem-amplification h2 {
    font-size: 46px;
    margin-bottom: 30px;
    font-weight: 300;
}

.problem-amplification p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.visual-showcase {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.image-grid-stacked {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    width: 100%;
    background-color: var(--bg-light);
}

.grid-item.large {
    height: 500px;
}

.grid-item:not(.large) {
    height: 350px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 40px;
}

.overlay-caption h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 400;
}

.overlay-caption p {
    font-size: 18px;
    font-weight: 300;
}

.trust-building {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.trust-building h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 400;
}

.benefits-visual {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--bg-white);
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.benefit-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.benefit-card p {
    padding: 0 25px 25px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-inline {
    padding: 80px 10%;
    background-color: var(--bg-white);
}

.testimonial {
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.services-reveal {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.services-reveal h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-cards-offset {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 50px;
    background-color: var(--bg-white);
    padding: 40px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 20px 0;
}

.cta-select {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-select:hover {
    background-color: var(--secondary-color);
}

.cta-main {
    padding: 100px 10%;
    background-color: var(--bg-white);
}

.cta-main h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.cta-main > .content-narrow > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    padding: 60px 10%;
    background-color: var(--bg-light);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 5% 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 25px 5%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-cookie.accept {
    background-color: var(--primary-color);
    color: white;
}

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

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

.page-hero-minimal {
    padding: 100px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 300;
}

.hero-content-centered p {
    font-size: 20px;
    color: var(--text-light);
}

.about-narrative {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.content-asymmetric {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.text-primary {
    flex: 1.2;
}

.text-primary h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.text-primary p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.visual-accent {
    flex: 1;
    background-color: var(--bg-light);
}

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

.philosophy-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 400;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 35px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.philosophy-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.team-visual-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

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

.member-image {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-visual {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.split-content-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row-reverse;
}

.cta-about {
    padding: 80px 10%;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
}

.cta-about a {
    color: var(--primary-color);
    text-decoration: underline;
}

.services-detailed {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

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

.service-image-large {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-details-list {
    margin: 25px 0;
}

.service-details-list h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.service-details-list ul {
    list-style: none;
    padding-left: 0;
}

.service-details-list ul li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-details-list ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.price-highlight {
    font-size: 34px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 25px 0;
}

.cta-services {
    padding: 100px 10%;
    background-color: var(--bg-light);
}

.contact-info-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 400;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.location-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.location-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 400;
}

.location-info {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--primary-color);
    font-weight: 500;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.location-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
}

.faq-section {
    padding: 80px 10%;
    background-color: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 400;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-message {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-details {
    margin: 40px 0;
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
    background-color: var(--bg-light);
    padding: 30px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.thanks-next-steps ol {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 25px;
}

.thanks-next-steps ol li {
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.8;
}

.thanks-additional {
    padding: 60px 10%;
    background-color: var(--bg-light);
}

.thanks-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-additional p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.additional-links {
    list-style: none;
    padding-left: 0;
}

.additional-links li {
    margin-bottom: 12px;
}

.additional-links a {
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    transition: opacity 0.3s ease;
}

.additional-links a:hover {
    opacity: 0.7;
}

.legal-page {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 400;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 500;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

    .hero-overlay p {
        font-size: 18px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .split-visual,
    .content-asymmetric,
    .split-content-reverse,
    .content-split,
    .location-info {
        flex-direction: column;
    }

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

    .service-card:nth-child(even),
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .benefits-visual,
    .philosophy-grid,
    .team-visual-layout {
        flex-direction: column;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}