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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #4a7c59;
    --accent-color: #97be5a;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --error-color: #d32f2f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    gap: 32px;
}

.header-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.hero-image {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.intro-asymmetric {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.intro-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.intro-visual {
    flex: 0.8;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-stacked {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.benefits-stacked h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefit-block {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.benefit-block.left {
    flex-direction: row;
}

.benefit-block.right {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.benefit-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-cards {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.services-cards h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-card .price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.select-service.selected {
    background-color: var(--accent-color);
}

.form-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
}

.service-display {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
    border: 2px solid var(--border-color);
}

.service-display .label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 8px;
}

.service-display .value {
    color: var(--text-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-indicators {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.trust-indicators h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fff9e6;
    border-top: 3px solid #ffd966;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.references {
    padding: 60px 5%;
    background-color: var(--bg-white);
}

.references h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.references ol {
    max-width: 900px;
    margin-left: 20px;
}

.references li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references a {
    color: var(--primary-color);
    text-decoration: none;
}

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

footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    margin-bottom: 8px;
    font-size: 15px;
    opacity: 0.9;
}

.footer-col a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

.page-hero {
    padding: 100px 5%;
    background-color: var(--bg-light);
    display: flex;
    gap: 60px;
    align-items: center;
}

.page-hero-content {
    flex: 1;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.page-hero-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.about-intro {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.approach-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.approach-block {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.approach-block.reverse {
    flex-direction: row-reverse;
}

.approach-image {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.approach-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.values-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: opacity 0.3s;
}

.cta-button:hover {
    opacity: 0.9;
}

.services-detailed {
    padding: 60px 5%;
}

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

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

.service-detail.featured {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.featured-label {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 24px;
    margin-left: 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    margin-top: 16px;
}

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

.service-cta.primary {
    background-color: var(--accent-color);
}

.service-cta.primary:hover {
    background-color: var(--primary-color);
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.faq-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 32px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-page {
    padding: 80px 5%;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-intro p {
    font-size: 18px;
    color: var(--text-light);
}

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

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 6px;
}

.info-note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.additional-info {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.additional-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 5%;
    min-height: 500px;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.thanks-content {
    margin-bottom: 48px;
}

.thanks-main {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-confirmed {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
}

.service-confirmed p {
    font-size: 16px;
    margin: 0;
}

.thanks-note {
    font-size: 15px;
}

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

.thanks-btn {
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: opacity 0.3s;
}

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

.thanks-btn.secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.thanks-btn:hover {
    opacity: 0.9;
}

.next-steps {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .header-right {
        gap: 16px;
        font-size: 14px;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .benefit-block,
    .approach-block,
    .service-detail {
        flex-direction: column;
    }

    .benefit-block.right,
    .approach-block.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .cards-container {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

    .page-hero {
        flex-direction: column;
    }

    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .info-grid {
        flex-direction: column;
    }
}