* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8faf8;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a3d1a;
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 18px;
    color: #5a6c57;
    margin-bottom: 32px;
    max-width: 520px;
}

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

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

.hero-right {
    flex: 1;
    background-color: #e8f0e8;
}

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

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

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    color: #1a3d1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    color: #4a5b47;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: #e8f0e8;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.services-showcase {
    background-color: #fafbfa;
}

.services-showcase h2 {
    font-size: 40px;
    color: #1a3d1a;
    margin-bottom: 48px;
    text-align: center;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 360px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 22px;
    color: #1a3d1a;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #5a6c57;
    margin: 0 24px 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 24px 16px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1f4620;
}

.form-section {
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    color: #1a3d1a;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    font-size: 17px;
    color: #5a6c57;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d7d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    background-color: #f4f7f4;
}

.trust-section h2 {
    font-size: 36px;
    color: #1a3d1a;
    margin-bottom: 48px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 22px;
    color: #1a3d1a;
    margin-bottom: 16px;
}

.trust-item p {
    font-size: 16px;
    color: #5a6c57;
}

.main-footer {
    background-color: #2a4a2b;
    color: #e0e8e0;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 24px;
    font-size: 13px;
    line-height: 1.5;
    color: #b0c0b0;
    border-top: 1px solid #3a5a3b;
    padding-top: 24px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #3a5a3b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    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;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c3e50;
}

.cookie-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #e0e0e0;
    color: #2c3e50;
}

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

.page-header {
    background-color: #2a4a2b;
    color: #ffffff;
    padding: 60px 24px;
}

.page-header h1 {
    font-size: 44px;
    text-align: center;
}

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

.about-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: #1a3d1a;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    color: #4a5b47;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #e8f0e8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.methodology-section {
    background-color: #f8faf8;
}

.methodology-section h2 {
    font-size: 36px;
    color: #1a3d1a;
    margin-bottom: 48px;
    text-align: center;
}

.methodology-steps {
    display: flex;
    gap: 32px;
}

.step {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 20px;
    color: #1a3d1a;
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: #5a6c57;
}

.values-section {
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 36px;
    color: #1a3d1a;
    margin-bottom: 48px;
    text-align: center;
}

.values-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 24px;
    color: #1a3d1a;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 17px;
    color: #4a5b47;
}

.team-section {
    background-color: #f4f7f4;
}

.team-section h2 {
    font-size: 36px;
    color: #1a3d1a;
    margin-bottom: 32px;
}

.team-section p {
    font-size: 17px;
    color: #4a5b47;
    margin-bottom: 20px;
}

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

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    color: #4a5b47;
    margin-bottom: 20px;
}

.service-price {
    margin: 32px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #5a6c57;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8f0e8;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.process-section {
    background-color: #f8faf8;
}

.process-section h2 {
    font-size: 36px;
    color: #1a3d1a;
    margin-bottom: 24px;
}

.process-section p {
    font-size: 17px;
    color: #4a5b47;
    margin-bottom: 20px;
}

.contact-info-section {
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 17px;
    color: #4a5b47;
}

.contact-map {
    flex: 1;
    background-color: #e8f0e8;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.contact-additional {
    background-color: #f8faf8;
}

.contact-additional h2 {
    font-size: 32px;
    color: #1a3d1a;
    margin-bottom: 24px;
}

.contact-additional p {
    font-size: 17px;
    color: #4a5b47;
    margin-bottom: 20px;
}

.checklist {
    list-style: none;
    margin-left: 0;
}

.checklist li {
    font-size: 16px;
    color: #4a5b47;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 18px;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-container h1 {
    font-size: 44px;
    color: #1a3d1a;
    margin-bottom: 24px;
}

.thanks-container > p {
    font-size: 18px;
    color: #4a5b47;
    margin-bottom: 32px;
}

.thanks-info {
    background-color: #f4f7f4;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 17px;
    color: #2c5f2d;
    font-weight: 600;
}

.thanks-container h2 {
    font-size: 28px;
    color: #1a3d1a;
    margin-bottom: 24px;
}

.next-steps {
    text-align: left;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps li {
    font-size: 17px;
    color: #4a5b47;
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e8f0e8;
    color: #2c5f2d;
}

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

.legal-page {
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    color: #1a3d1a;
    margin-bottom: 16px;
}

.updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    color: #1a3d1a;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #4a5b47;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #4a5b47;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .trust-grid,
    .methodology-steps,
    .service-detail,
    .contact-layout,
    .footer-content {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 16px;
    }

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