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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #999;
    font-style: italic;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d4c4a8;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

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

.hero-overlay p {
    font-size: 22px;
    line-height: 1.5;
}

section {
    padding: 80px 0;
}

.intro-section {
    background-color: #fff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #444;
}

.problem-section {
    background-color: #f4ebe0;
    padding: 100px 0;
}

.problem-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 4px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #c9a961;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.story-section {
    background-color: #fff;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8dcc8;
}

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

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.insight-section {
    background-color: #2c2c2c;
    color: #fff;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.insight-section p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.services-preview-section {
    background-color: #fff;
    padding: 100px 0;
}

.services-preview-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #f9f9f9;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    background-color: #e8dcc8;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #c9a961;
    margin: 20px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #c9a961;
}

.testimonials-section {
    background-color: #f4ebe0;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-block {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #c9a961;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-author {
    font-size: 16px;
    color: #777;
}

.benefits-section {
    background-color: #fff;
}

.benefits-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #f9f9f9;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #c9a961;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.form-section {
    background-color: #2c2c2c;
    color: #fff;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #555;
    background-color: #fff;
    color: #333;
}

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

.form-group input[readonly] {
    background-color: #e9e9e9;
    color: #666;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #c9a961;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #f4ebe0;
    padding: 60px 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #c9a961;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 200px;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #c9a961;
    color: #fff;
}

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

.btn-reject {
    background-color: #444;
    color: #fff;
}

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

.page-hero {
    background-color: #2c2c2c;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
}

.about-intro {
    background-color: #fff;
}

.about-intro p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #444;
}

.about-content {
    background-color: #f9f9f9;
}

.about-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8dcc8;
}

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

.values-section {
    background-color: #2c2c2c;
    color: #fff;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #c9a961;
}

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

.services-detailed {
    background-color: #fff;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8dcc8;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #c9a961;
    margin: 25px 0;
}

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #c9a961;
}

.contact-section {
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #c9a961;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8dcc8;
}

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

.visit-section {
    background-color: #f4ebe0;
}

.visit-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
}

.visit-section p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    color: #444;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
    text-align: center;
    margin: 20px auto;
    display: block;
    max-width: 300px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #c9a961;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #b08d4a;
}

.thanks-section {
    background-color: #fff;
    padding: 100px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #444;
}

.thanks-details {
    background-color: #f4ebe0;
    padding: 40px;
    margin: 40px 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-details ul li {
    font-size: 17px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.thanks-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a961;
    font-weight: bold;
}

.service-requested {
    background-color: #2c2c2c;
    color: #fff;
    padding: 30px;
    margin: 40px 0;
}

.service-requested h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #c9a961;
}

.service-requested p {
    font-size: 18px;
}

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

.legal-section {
    background-color: #fff;
    padding: 80px 0;
}

.legal-section h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #c9a961;
}

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

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.legal-section em {
    color: #777;
}

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

    .nav-links {
        gap: 15px;
    }

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

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

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

    .btn-primary,
    .btn-secondary {
        max-width: 100%;
    }
}