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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2d6a4f;
    text-decoration: none;
}

a:hover {
    color: #1b4332;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
}

.hero-split {
    display: flex;
    min-height: 560px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 60px 5% 60px 8%;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1b4332;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #495057;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2d6a4f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ffffff;
    color: #2d6a4f;
    font-weight: 600;
    border: 2px solid #2d6a4f;
    border-radius: 6px;
    transition: all 0.3s;
}

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

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

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1b4332;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.value-section {
    background-color: #f8f9fa;
    padding: 80px 5%;
}

.value-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: #1b4332;
}

.value-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.value-card p {
    color: #495057;
    font-size: 16px;
}

.story-split {
    display: flex;
    padding: 80px 5%;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1b4332;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.story-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
}

.services-preview {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: #1b4332;
}

.services-split-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-block {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-icon {
    flex: 0 0 220px;
}

.service-icon img {
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1b4332;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 16px;
}

.select-service {
    padding: 12px 24px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cta-center {
    text-align: center;
    margin-top: 48px;
}

.testimonial-split {
    display: flex;
    gap: 48px;
    padding: 80px 5%;
    background-color: #ffffff;
}

.testimonial-content {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.testimonial-content blockquote {
    font-size: 18px;
    font-style: italic;
    color: #495057;
    line-height: 1.7;
}

.testimonial-content cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #2d6a4f;
}

.process-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1b4332;
}

.process-step {
    margin-bottom: 32px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d6a4f;
}

.process-step p {
    font-size: 16px;
    color: #495057;
}

.process-visual {
    flex: 1;
}

.process-visual img {
    border-radius: 8px;
}

.form-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1b4332;
}

.form-intro p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.trust-split {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    align-items: center;
    background-color: #f8f9fa;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    border-radius: 8px;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1b4332;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.link-inline {
    color: #2d6a4f;
    font-weight: 600;
    text-decoration: underline;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fff3cd;
}

.disclaimer-content p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #856404;
    text-align: center;
    line-height: 1.7;
}

.footer-container {
    background-color: #1b4332;
    color: #ffffff;
    padding: 60px 5% 20px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #95d5b2;
}

.footer-column p,
.footer-column ul {
    font-size: 15px;
    color: #d8f3dc;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #d8f3dc;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #d8f3dc;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    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: 24px;
}

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

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

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

.page-hero {
    padding: 80px 5% 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1b4332;
}

.page-hero p {
    font-size: 19px;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.mission-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.mission-split.reverse {
    flex-direction: row-reverse;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1b4332;
}

.mission-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: 8px;
}

.values-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: #1b4332;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.value-item p {
    font-size: 16px;
    color: #495057;
}

.team-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1b4332;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.team-image {
    flex: 1;
}

.team-image img {
    border-radius: 8px;
}

.approach-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: #1b4332;
}

.approach-split {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-block {
    flex: 1;
    padding: 40px 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.approach-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.approach-block p {
    font-size: 16px;
    color: #495057;
}

.results-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.results-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: #1b4332;
}

.results-stats {
    display: flex;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-block {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background-color: #ffffff;
    padding: 40px 24px;
    border-radius: 8px;
}

.stat-big {
    display: block;
    font-size: 54px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 15px;
    color: #6c757d;
}

.cta-about {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.cta-content-center h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1b4332;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #495057;
}

.services-detailed {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-full {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

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

.service-header {
    padding: 32px 40px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    font-size: 28px;
    color: #1b4332;
}

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

.service-body-split {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.service-description {
    flex: 1.5;
}

.service-description p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #495057;
}

.service-description h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

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

.service-description ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #495057;
}

.service-description ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: 700;
}

.service-image-block {
    flex: 1;
}

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

.service-card-full .select-service {
    margin: 0 40px 40px;
}

.pricing-note {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

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

.note-container h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1b4332;
}

.note-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
}

.contact-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d6a4f;
}

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

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background-color: #fff3cd;
    border-radius: 8px;
}

.contact-note p {
    font-size: 15px;
    color: #856404;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 8px;
}

.contact-form-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.form-container-center {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.form-container-center > p {
    text-align: center;
    margin-bottom: 32px;
    color: #495057;
}

.faq-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: #1b4332;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.faq-item p {
    font-size: 16px;
    color: #495057;
}

.thanks-container {
    padding: 100px 5%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1b4332;
}

.thanks-main-text {
    font-size: 20px;
    margin-bottom: 24px;
    color: #2d6a4f;
    font-weight: 600;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #495057;
}

#selectedServiceInfo {
    font-size: 16px;
    color: #2d6a4f;
    margin-top: 24px;
}

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

.btn-primary {
    padding: 16px 32px;
    background-color: #2d6a4f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 16px 32px;
    background-color: #ffffff;
    color: #2d6a4f;
    border: 2px solid #2d6a4f;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2d6a4f;
    color: #ffffff;
}

.next-steps {
    padding: 80px 5%;
    background-color: #ffffff;
}

.next-steps-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: #1b4332;
}

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

.step-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #2d6a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.step-card p {
    font-size: 16px;
    color: #495057;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1b4332;
}

.legal-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #495057;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-container ul li {
    margin-bottom: 8px;
    color: #495057;
}

.legal-date {
    margin-top: 48px;
    font-style: italic;
    color: #6c757d;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

    .hero-split,
    .intro-split,
    .story-split,
    .testimonial-split,
    .process-split,
    .form-container-split,
    .trust-split,
    .about-split,
    .mission-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

    .value-grid,
    .services-split-grid,
    .approach-split,
    .results-stats,
    .steps-grid {
        flex-direction: column;
    }

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

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

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

    .service-body-split {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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