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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f3f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #2c3e50;
}

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

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

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

.hero-overlay h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 1.4rem;
    color: #ecf0f1;
    max-width: 700px;
    font-weight: 300;
}

.intro-narrative {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.narrow-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5f3f;
    font-weight: 500;
}

.image-section {
    width: 100%;
    background-color: #ecf0f1;
}

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

.services-preview {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a5f3f;
    text-align: center;
    font-weight: 400;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1a5f3f;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 500;
}

.service-card p {
    padding: 0 1.5rem;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-card .price {
    display: block;
    padding: 1.5rem;
    font-size: 1.3rem;
    color: #27ae60;
    font-weight: 600;
}

.visual-break {
    width: 100%;
    background-color: #34495e;
}

.full-width-image {
    width: 100%;
}

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

.trust-content {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.trust-item {
    flex: 1 1 calc(33.333% - 3rem);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 1.3rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 500;
}

.trust-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background-color: #1a5f3f;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-inline p {
    font-size: 1.6rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-inline cite {
    color: #95a5a6;
    font-size: 1.1rem;
    font-style: normal;
}

.additional-services {
    padding: 6rem 2rem;
    background-color: #ecf0f1;
}

.alt-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-detail {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #1a5f3f;
}

.service-detail h3 {
    font-size: 1.5rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-detail p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail .price {
    display: inline-block;
    font-size: 1.4rem;
    color: #27ae60;
    font-weight: 600;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #2c3e50;
}

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

.form-container h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

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

.form-group label {
    display: block;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #bdc3c7;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    margin-bottom: 2rem;
}

.footer-info p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #34495e;
}

.footer-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ecf0f1;
}

.disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.disclaimer strong {
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #34495e;
    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 {
    color: #ecf0f1;
    font-size: 0.95rem;
    flex: 1 1 auto;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

.page-hero {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background-color: #2c3e50;
}

.page-header {
    margin-top: 70px;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-narrative {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.method-section {
    padding: 6rem 2rem;
    background-color: #ecf0f1;
}

.method-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2rem;
}

.method-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
}

.method-item h3 {
    font-size: 1.3rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 500;
}

.method-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.values-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #1a5f3f;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-section p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.text-link {
    display: inline-block;
    color: #27ae60;
    background-color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.text-link:hover {
    background-color: #ecf0f1;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-full {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-image {
    flex: 1 1 45%;
    background-color: #ecf0f1;
}

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

.service-content {
    flex: 1 1 55%;
}

.service-content h2 {
    font-size: 2rem;
    color: #1a5f3f;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.price-block {
    margin-top: 1.5rem;
}

.service-price {
    font-size: 1.6rem;
    color: #27ae60;
    font-weight: 700;
}

.request-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.request-section h2 {
    font-size: 2.2rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 400;
}

.request-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #229954;
}

.contact-page {
    margin-top: 70px;
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.contact-page h1 {
    font-size: 3rem;
    color: #1a5f3f;
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-note {
    flex: 1 1 400px;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 1.5rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
    padding: 0.5rem 0;
}

.contact-note h2 {
    font-size: 1.5rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-note p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-page {
    margin-top: 70px;
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.thanks-page h1 {
    font-size: 3rem;
    color: #1a5f3f;
    margin-bottom: 2rem;
    font-weight: 400;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.confirmation-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.confirmation-details ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.confirmation-details li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.next-steps {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 500;
}

.next-steps p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.next-steps a {
    color: #27ae60;
    font-weight: 600;
    transition: color 0.3s ease;
}

.next-steps a:hover {
    color: #1a5f3f;
}

.back-link {
    display: inline-block;
    color: #27ae60;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1a5f3f;
}

.legal-page {
    margin-top: 70px;
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 3rem;
    color: #1a5f3f;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a5f3f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.legal-page p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-page em {
    color: #7f8c8d;
}

.legal-page a {
    color: #27ae60;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #1a5f3f;
}

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

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

    .service-full {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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