* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2f5d3e;
}

.ad-notice {
    font-size: 0.8rem;
    color: #718096;
    padding: 0.3rem 0.8rem;
    background-color: #f7fafc;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 93, 62, 0.85), rgba(45, 90, 62, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(135deg, #2f5d3e, #3a7050);
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.narrow-container {
    max-width: 850px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.story-intro p {
    font-size: 1.1rem;
    color: #4a5568;
}

.insight-block {
    padding: 6rem 2rem;
}

.alt-bg {
    background-color: #f7fafc;
}

.two-col-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.col-image,
.col-content {
    flex: 1;
    min-width: 300px;
}

.col-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.col-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.col-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

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

.centered-content {
    max-width: 1300px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: -1rem auto 3rem;
    color: #4a5568;
}

.value-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2f5d3e, #3a7050);
}

.testimonial-inline blockquote {
    border: none;
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.8;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.approach-section {
    padding: 6rem 2rem;
}

.offset-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.offset-content {
    flex: 1.2;
    min-width: 300px;
}

.offset-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.offset-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.offset-content a {
    color: #2f5d3e;
    text-decoration: underline;
}

.offset-content a:hover {
    color: #48bb78;
}

.offset-image {
    flex: 1;
    min-width: 300px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

.services-list {
    margin-top: 3rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}

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

.service-details h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2f5d3e;
    margin-top: 1.5rem;
}

.select-service {
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #4a5568;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2f5d3e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #fffaf0;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.references-section {
    padding: 3rem 2rem;
    background-color: #f7fafc;
}

.references-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.references-list a {
    color: #2f5d3e;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #48bb78;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

.about-intro {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.7;
}

.story-section {
    padding: 6rem 2rem;
}

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

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.value-box {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-top: 4px solid #48bb78;
}

.value-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.value-box p {
    color: #4a5568;
    line-height: 1.7;
}

.team-approach {
    padding: 6rem 2rem;
    background-color: #f7fafc;
}

.cta-simple {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.cta-simple h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.cta-simple p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #48bb78;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-full {
    padding: 3rem 0;
}

.service-block {
    padding: 5rem 2rem;
}

.service-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-visual {
    flex: 1;
    min-width: 300px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}

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

.service-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #4a5568;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.price-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2f5d3e;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
}

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

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.info-block p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}

.additional-info {
    padding: 5rem 2rem;
}

.additional-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.additional-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: #f0fff4;
    border-radius: 50%;
}

.thanks-container h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.service-confirmation {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2f5d3e;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    margin-bottom: 2rem;
    color: #4a5568;
}

.thanks-container .btn-primary {
    margin-top: 1rem;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 0.6rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content strong {
    color: #2d3748;
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .two-col-layout,
    .offset-layout,
    .service-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .col-content h2,
    .offset-content h2,
    .service-info h2 {
        font-size: 1.8rem;
    }

    .centered-content h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}