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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b4513;
    --accent-color: #c27c3e;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--gray);
    background-color: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    font-weight: 400;
    line-height: 1.3;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 750px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-narrow {
    max-width: 850px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro-section {
    background-color: var(--white);
}

.intro-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.4;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.image-text-offset {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

.section-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.image-block {
    flex: 1.2;
    background-color: var(--light-gray);
}

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

.text-block {
    flex: 1;
    padding: 1rem;
}

.text-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.text-block p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.link-inline {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--accent-color);
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: var(--secondary-color);
}

.services-highlight {
    background-color: var(--white);
    padding: 6rem 0;
}

.services-highlight h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 400;
}

.services-cards {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 360px;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--light-gray);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 400;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.price {
    padding: 0 1.5rem 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-section {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
}

.testimonial-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
}

.testimonial-block p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-block cite {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: normal;
}

.form-section {
    background-color: var(--dark-bg);
    padding: 6rem 0;
    color: var(--white);
}

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

.form-container h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 400;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.info-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.info-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1 1 300px;
    padding: 1.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.info-block p {
    font-size: 1rem;
    color: var(--text-color);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.footer-column p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0.8rem;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.75;
    max-width: 800px;
    margin: 1rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    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 {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    background-color: var(--light-bg);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.services-detail {
    background-color: var(--white);
}

.service-item {
    padding: 4rem 0;
}

.service-item:nth-child(even) {
    background-color: var(--light-bg);
}

.service-content-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-content-layout.reverse {
    flex-direction: row-reverse;
}

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-info ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.price-display {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.cta-section {
    background-color: var(--dark-bg);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.about-intro {
    background-color: var(--white);
}

.about-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.about-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.expertise-section {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.text-side {
    flex: 1;
}

.text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.text-side p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
}

.image-side {
    flex: 1;
    background-color: var(--light-gray);
}

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

.method-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.method-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 400;
}

.method-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.method-item {
    flex: 1 1 calc(50% - 1.5rem);
    padding: 2rem;
    background-color: var(--light-bg);
}

.method-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.method-item p {
    font-size: 1rem;
    color: var(--text-color);
}

.values-section {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

.values-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
    text-align: center;
}

.values-list {
    max-width: 850px;
    margin: 0 auto;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.value-item p {
    font-size: 1.05rem;
}

.background-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.partnership-section {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

.partnership-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.partnership-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-block {
    max-width: 700px;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 400;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
}

.location-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.location-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.location-description {
    max-width: 850px;
    margin: 0 auto;
}

.location-description p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
}

.faq-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
    text-align: center;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-color);
}

.additional-info-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.info-boxes {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-box {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: var(--white);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.info-box p {
    font-size: 1rem;
    color: var(--text-color);
}

.thanks-section {
    background-color: var(--white);
    padding: 6rem 0;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gray);
}

.selected-service-info {
    background-color: var(--light-bg);
    padding: 1.5rem;
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent-color);
}

.next-steps {
    margin-bottom: 4rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.steps-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: left;
    padding: 1.5rem;
    background-color: var(--light-bg);
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 400;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-color);
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.additional-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.action-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.legal-page {
    background-color: var(--white);
    padding: 3rem 0 5rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

.cookie-table thead {
    background-color: var(--light-bg);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--light-gray);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .section-wrapper {
        padding: 3rem 1.5rem;
    }

    .content-narrow {
        padding: 3rem 1.5rem;
    }

    .section-grid-asymmetric,
    .service-content-layout,
    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-content-layout.reverse {
        flex-direction: column;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .method-item {
        flex: 1 1 100%;
    }

    .steps-list {
        flex-direction: column;
        align-items: center;
    }

    .action-links {
        flex-direction: column;
        align-items: center;
    }
}
