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

:root {
    --primary-color: #2d5a4d;
    --secondary-color: #8b6f47;
    --accent-color: #c9a87c;
    --text-dark: #1a1a1a;
    --text-light: #f8f8f8;
    --bg-light: #faf9f7;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
    --overlay-dark: rgba(26, 26, 26, 0.6);
    --overlay-light: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.ad-disclosure {
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

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

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

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 600px;
    background-color: var(--overlay-light);
    padding: 50px 60px;
    backdrop-filter: blur(10px);
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 19px;
    color: var(--text-dark);
    line-height: 1.6;
}

.story-intro {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.story-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.visual-break {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

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

.text-layer {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.text-layer h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.text-layer p {
    font-size: 17px;
    line-height: 1.8;
}

.problem-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
}

.problem-box {
    max-width: 650px;
    text-align: center;
    padding: 50px;
    border: 2px solid var(--border-color);
}

.problem-box h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.problem-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

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

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.trust-markers {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.marker-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.marker {
    flex: 1;
    padding: 40px 30px;
    background-color: var(--bg-light);
    text-align: center;
}

.marker h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.marker p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-visual {
    position: relative;
    height: 450px;
    overflow: hidden;
}

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

.testimonial-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--overlay-dark);
    padding: 40px;
}

.testimonial-overlay blockquote {
    max-width: 700px;
    text-align: center;
    color: var(--text-light);
}

.testimonial-overlay blockquote p {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

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

.services-preview {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.services-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-white);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease;
}

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

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

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

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

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

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.select-service {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.form-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

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

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

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

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

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

.final-visual {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.final-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.final-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--overlay-dark);
}

.final-text p {
    font-size: 32px;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    max-width: 700px;
    padding: 0 20px;
}

footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    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.2);
}

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.thanks-hero {
    padding: 100px 40px;
    background-color: var(--bg-light);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.thanks-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next {
    text-align: left;
    margin: 40px 0;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next ul {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.9;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.about-hero {
    position: relative;
}

.about-hero-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

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

.about-hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--overlay-dark);
}

.about-hero-text h1 {
    font-size: 56px;
    color: var(--text-light);
    font-weight: 700;
}

.about-story {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-image-inline {
    margin: 50px 0;
}

.about-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-values {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
}

.services-header {
    padding: 80px 40px 50px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: var(--text-dark);
}

.services-detailed {
    padding: 60px 40px 100px;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 80px;
    align-items: center;
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.service-features span {
    padding: 8px 16px;
    background-color: var(--bg-light);
    font-size: 14px;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.service-price-action {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-order {
    padding: 12px 26px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.services-info {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.info-grid {
    display: flex;
    gap: 40px;
}

.info-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 30px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-hero {
    padding: 80px 40px 50px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-dark);
}

.contact-content {
    padding: 60px 40px 100px;
    background-color: var(--bg-white);
}

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

.contact-main {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

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

.contact-secondary {
    background-color: var(--bg-light);
    padding: 40px;
}

.contact-secondary h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-secondary p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-landmarks {
    margin: 30px 0;
}

.contact-landmarks h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-landmarks ul {
    list-style-position: inside;
    font-size: 15px;
    line-height: 1.8;
}

.contact-cta {
    margin-top: 40px;
    text-align: center;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container ul {
    margin: 15px 0 20px 30px;
    list-style-type: disc;
}

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

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

.legal-container a:hover {
    color: var(--secondary-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-dark);
}

.no-link {
    color: var(--text-dark);
}

@media screen and (max-width: 768px) {
    .floating-nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 40px;
        padding: 30px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .visual-break {
        flex-direction: column;
    }

    .text-layer {
        padding: 40px 30px;
    }

    .insight-wrapper {
        flex-direction: column;
        padding: 40px 20px;
    }

    .marker-grid {
        flex-direction: column;
        gap: 20px;
    }

    .services-visual-grid .service-card {
        flex-direction: column;
    }

    .services-visual-grid .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-values {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .info-grid {
        flex-direction: column;
        gap: 20px;
    }

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

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