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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #5dade2;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

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

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

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 32px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2D7A4F;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #236039;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

.approach-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.approach-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #e9ecef;
}

.approach-image img {
    width: 100%;
    height: auto;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.services-highlight {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-intro p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2D7A4F;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: #2D7A4F;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

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

.cta-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.cta-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.cta-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
}

.cta-right {
    flex: 1;
}

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

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

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

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

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

.service-display {
    padding: 16px;
    background-color: #e8f5e9;
    border-left: 4px solid #2D7A4F;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    display: none;
}

.service-display.show {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2D7A4F;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2D7A4F;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e8e8e8;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    font-size: 14px;
    color: #b0b0b0;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888888;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    line-height: 1.6;
}

.page-hero {
    background-color: #2D7A4F;
    padding: 80px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #e8f5e9;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
}

.service-detail-price {
    margin: 24px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #2D7A4F;
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: #2D7A4F;
}

.price-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.cta-services {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.cta-services-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.cta-services-content p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 40px;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.about-hero {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.about-hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

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

.about-hero-image img {
    width: 100%;
    height: auto;
}

.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 260px;
}

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

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

.approach-detail {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image-side {
    flex: 1;
    background-color: #e9ecef;
}

.approach-image-side img {
    width: 100%;
    height: auto;
}

.approach-text-side {
    flex: 1;
}

.approach-text-side h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.approach-text-side p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.team-image-block {
    margin-top: 40px;
    background-color: #e9ecef;
}

.team-image-block img {
    width: 100%;
    height: auto;
}

.experience-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.experience-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.experience-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.cta-about {
    padding: 80px 40px;
    background-color: #2D7A4F;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 18px;
    color: #e8f5e9;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2D7A4F;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

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

.contact-hero {
    background-color: #2D7A4F;
    padding: 80px 40px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-hero-content p {
    font-size: 20px;
    color: #e8f5e9;
}

.contact-main {
    padding: 100px 40px;
}

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

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2D7A4F;
    margin-bottom: 8px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-image {
    margin-top: 40px;
    background-color: #e9ecef;
}

.contact-image img {
    width: 100%;
    height: auto;
}

.contact-form-side {
    flex: 1;
}

.contact-form-side h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-intro {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

.contact-form-page {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-privacy label {
    font-size: 13px;
    color: #495057;
    line-height: 1.5;
}

.form-privacy a {
    color: #2D7A4F;
    text-decoration: underline;
}

.faq-contact {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

.thanks-section {
    padding: 120px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-lead {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #2D7A4F;
    margin-bottom: 40px;
    font-size: 16px;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.thanks-next {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 20px;
}

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

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.thanks-cta p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 24px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f8f9fa;
    color: #2D7A4F;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2D7A4F;
}

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

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2D7A4F;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

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

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

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

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

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #dee2e6;
}

.cookie-table td {
    padding: 12px;
    font-size: 14px;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
}

@media (max-width: 1024px) {
    .hero-split,
    .approach-content,
    .cta-split,
    .service-card,
    .service-detail-block,
    .about-hero-split,
    .approach-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        margin-top: 16px;
        gap: 16px;
    }

    .hero-left h1,
    .page-hero-content h1,
    .about-hero-text h1,
    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .approach-text h2,
    .cta-left h2,
    .service-detail-content h2,
    .approach-text-side h2,
    .contact-info-side h2,
    .contact-form-side h2,
    .thanks-next h2 {
        font-size: 28px;
    }

    .services-intro h2,
    .trust-content h2,
    .values-section h2,
    .team-section h2,
    .experience-content h2,
    .cta-about-content h2,
    .faq-content h2 {
        font-size: 32px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .hero-left,
    .approach-text,
    .cta-left,
    .service-info,
    .service-detail-content {
        padding: 40px 24px;
    }

    .contact-form,
    .service-form,
    .contact-form-page {
        padding: 24px;
    }
}