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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #2c2c2c;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 12px;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #e8e2d5;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
}

.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.story-intro {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f0e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.problem-section {
    padding: 100px 20px;
    background-color: #f5f0e8;
}

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

.problem-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 400;
}

.problem-content p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.insight-card {
    background-color: #ffffff;
    padding: 40px;
    margin-top: 50px;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.insight-card p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-preview {
    padding: 100px 20px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 400;
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
}

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

.service-card img {
    width: 45%;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e8e2d5;
}

.service-card > div {
    flex: 1;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 24px;
    font-weight: 600;
    color: #8b7355;
    margin: 20px 0;
}

.select-service {
    padding: 12px 28px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #6d5941;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #8b7355;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: #c4c4c4;
    font-style: normal;
}

.form-section {
    padding: 100px 20px;
    background-color: #f5f0e8;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #4a4a4a;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0cbc0;
    border-radius: 4px;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #6d5941;
    transform: translateY(-2px);
}

.final-cta {
    padding: 120px 20px;
    text-align: center;
    background-color: #ffffff;
}

.final-cta h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #6d5941;
    transform: translateY(-2px);
}

.site-footer {
    background-color: #1a1a1a;
    color: #c4c4c4;
    padding: 60px 20px 20px;
}

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

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

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #a0a0a0;
}

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

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

.about-hero,
.services-header,
.contact-hero {
    margin-top: 120px;
    padding: 80px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.about-hero-content h1,
.services-header-content h1,
.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}

.services-header-content p,
.contact-hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.about-image {
    flex: 1;
    background-color: #f5f0e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-process {
    padding: 100px 20px;
    background-color: #f5f0e8;
}

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

.process-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 400;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b7355;
}

.process-step p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.about-values {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.values-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 400;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #fafafa;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.value-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.about-team {
    padding: 100px 20px;
    background-color: #f5f0e8;
}

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

.team-container h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 400;
}

.team-container p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-cta {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    background-color: #f5f0e8;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-price {
    font-size: 26px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

.service-detail-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-service:hover {
    background-color: #6d5941;
    transform: translateY(-2px);
}

.contact-main {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.info-block p {
    font-size: 17px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.7;
}

.info-block .note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.contact-map {
    flex: 1;
    background-color: #f5f0e8;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    padding: 100px 20px;
    background-color: #f5f0e8;
    text-align: center;
}

.cta-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #4a4a4a;
}

.thanks-section {
    margin-top: 120px;
    padding: 100px 20px;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: 400;
}

.thanks-message {
    margin-bottom: 60px;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: 400;
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #f5f0e8;
    border-radius: 8px;
    text-align: left;
}

.next-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b7355;
}

.next-step p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6d5941;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-page {
    margin-top: 120px;
    padding: 80px 20px;
    background-color: #ffffff;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 400;
}

.legal-date {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 500;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #4a4a4a;
    font-weight: 500;
}

.legal-section h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #4a4a4a;
    font-weight: 500;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #d0cbc0;
}

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

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        padding: 12px 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .service-card {
        flex-direction: column !important;
    }

    .service-card img {
        width: 100%;
    }

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

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

    .process-steps {
        flex-direction: column;
    }

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

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

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

    .next-steps {
        flex-direction: column;
    }

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

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}