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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie.accept {
    background-color: #2d7a4f;
    color: #ffffff;
}

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

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

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

.header-main {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section {
    flex: 1;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.ad-disclosure {
    padding: 0.4rem 1rem;
    background-color: #fff3cd;
    border-radius: 4px;
}

.ad-label {
    font-size: 0.85rem;
    color: #856404;
    font-weight: 500;
}

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

.nav-primary a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-primary a:hover {
    color: #2d7a4f;
}

.hero-magazine {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-heading {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-right {
    flex: 1;
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d7a4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #256841;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2d7a4f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2d7a4f;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2d7a4f;
    color: #ffffff;
}

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

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

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

.intro-narrow h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-grid-magazine {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.services-layout-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-large {
    flex: 1 1 100%;
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card-medium {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card-small {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-image-wrapper {
    background-color: #e8e8e8;
    overflow: hidden;
    position: relative;
}

.service-card-large .service-image-wrapper {
    flex: 1;
}

.service-card-medium .service-image-wrapper,
.service-card-small .service-image-wrapper {
    height: 250px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d7a4f;
    margin-top: 1rem;
}

.cta-section-offset {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.cta-content-angled h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-angled p {
    font-size: 1.1rem;
    color: #d0d0d0;
}

.form-section-magazine {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.trust-section-sidebar {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.trust-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.trust-main {
    flex: 2;
}

.trust-main h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.trust-main p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.trust-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d7a4f;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
}

.testimonials-stacked {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonials-stacked h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2d7a4f;
}

.testimonial-text {
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #555;
    font-weight: 600;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff3cd;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.7;
}

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

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.8;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-col a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.about-hero {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.intro-large {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

.about-content-split {
    padding: 5rem 2rem;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 250px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.team-photo {
    width: 100%;
    height: 300px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 1.5rem 0.5rem;
}

.team-role {
    font-size: 0.95rem;
    color: #2d7a4f;
    font-weight: 600;
    margin: 0 1.5rem 1rem;
}

.team-member p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

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

.values-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.cta-about {
    padding: 4rem 2rem;
    background-color: #2d7a4f;
    color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-detailed {
    padding: 5rem 2rem;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 800;
    color: #2d7a4f;
    margin-bottom: 1.5rem;
}

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

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: #555;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: bold;
}

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

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

.form-section-services {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-section-services h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-hero {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 5rem 2rem;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-details {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.note-text {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-cta {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #2d7a4f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.service-selected {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.legal-content {
    padding: 5rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

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

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

.legal-content a {
    color: #2d7a4f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #256841;
}

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

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .hero-magazine {
        flex-direction: column;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-primary {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

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

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

    .trust-layout,
    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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