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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1f2e;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f2e;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 38px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #1a1f2e;
    transition: all 0.3s ease;
}

.hero-asymmetric {
    display: flex;
    align-items: stretch;
    min-height: 88vh;
    position: relative;
}

.hero-content-offset {
    width: 52%;
    padding: 120px 80px 80px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: #0d1821;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.hero-text {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 48px;
    max-width: 540px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 42px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #1e4d38;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.25);
}

.hero-image-block {
    width: 48%;
    position: relative;
    overflow: hidden;
}

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

.intro-offset {
    display: flex;
    padding: 110px 0 90px;
    max-width: 1420px;
    margin: 0 auto;
    gap: 85px;
    align-items: center;
}

.intro-narrow {
    width: 45%;
    padding-left: 90px;
}

.intro-narrow h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #0d1821;
    margin-bottom: 26px;
    letter-spacing: -0.8px;
}

.intro-narrow p {
    font-size: 17px;
    line-height: 1.75;
    color: #4a5568;
}

.intro-wide-image {
    width: 55%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 70px;
    position: relative;
}

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

.services-cards-asymmetric {
    padding: 100px 0 120px;
    background-color: #f9fafb;
}

.services-header-offset {
    max-width: 680px;
    margin: 0 0 70px 90px;
}

.services-header-offset h2 {
    font-size: 46px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 18px;
    letter-spacing: -0.9px;
}

.services-header-offset p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.cards-staggered {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-left {
    margin-right: auto;
    max-width: 920px;
}

.card-right {
    margin-left: auto;
    max-width: 920px;
}

.card-center {
    margin: 0 auto;
    max-width: 1000px;
}

.card-image-container {
    width: 45%;
    overflow: hidden;
    position: relative;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-content {
    width: 55%;
    padding: 42px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 24px;
}

.select-service {
    padding: 13px 32px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1e4d38;
    transform: translateX(4px);
}

.process-section {
    padding: 110px 0;
    background-color: #ffffff;
}

.process-content-split {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 70px;
    display: flex;
    gap: 90px;
    align-items: center;
}

.process-text {
    width: 48%;
}

.process-text h2 {
    font-size: 44px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 28px;
    letter-spacing: -0.8px;
}

.process-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 32px;
}

.process-list {
    list-style: none;
    margin-bottom: 42px;
}

.process-list li {
    font-size: 16px;
    color: #2d3748;
    padding: 14px 0;
    padding-left: 30px;
    position: relative;
}

.process-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: 700;
    font-size: 18px;
}

.cta-inline {
    display: inline-block;
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #2d6a4f;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #1e4d38;
    border-bottom-color: #1e4d38;
}

.process-image {
    width: 52%;
    height: 520px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

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

.form-section-offset {
    padding: 110px 0 120px;
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
}

.form-container-asymmetric {
    max-width: 880px;
    margin: 0 auto 0 12%;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 58px 64px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 42px;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.form-intro p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1f2e;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.submit-btn {
    padding: 16px 42px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #1e4d38;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.main-footer {
    background-color: #1a1f2e;
    color: #d1d5db;
    padding: 68px 0 0;
}

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

.footer-block {
    flex: 1;
}

.footer-block h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
}

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

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1320px;
    margin: 0 auto;
    padding: 32px 40px;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 28px 0;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    flex: 1;
}

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

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

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

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

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

.cookie-btn.reject {
    background-color: #e5e7eb;
    color: #374151;
}

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

.about-hero {
    padding: 120px 90px 90px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.about-hero-content {
    max-width: 820px;
}

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #0d1821;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.about-hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
}

.about-story-offset {
    display: flex;
    padding: 100px 0;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: flex-start;
}

.story-narrow {
    width: 50%;
    padding-left: 90px;
    padding-top: 40px;
}

.story-narrow h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 32px;
    letter-spacing: -0.7px;
}

.story-narrow p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.story-image-float {
    width: 50%;
    height: 560px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 70px;
    position: relative;
    transform: translateY(60px);
}

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

.values-section {
    padding: 90px 0 110px;
    background-color: #f9fafb;
}

.values-intro {
    max-width: 1320px;
    margin: 0 auto 60px;
    padding: 0 90px;
}

.values-intro h2 {
    font-size: 44px;
    font-weight: 700;
    color: #0d1821;
    letter-spacing: -0.8px;
}

.values-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 90px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.value-item {
    width: calc(50% - 24px);
    padding: 38px 42px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.75;
    color: #4a5568;
}

.team-section-asymmetric {
    display: flex;
    padding: 100px 0;
    background-color: #ffffff;
    align-items: center;
}

.team-content-offset {
    width: 46%;
    padding: 0 90px 0 110px;
}

.team-content-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 28px;
    letter-spacing: -0.8px;
}

.team-content-offset p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.team-image-overlay {
    width: 54%;
    height: 580px;
    overflow: hidden;
    position: relative;
}

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

.experience-section {
    padding: 100px 0 120px;
    background-color: #f9fafb;
}

.experience-wrapper {
    max-width: 1100px;
    margin: 0 auto 0 14%;
    padding: 0 60px;
}

.experience-wrapper h2 {
    font-size: 44px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
}

.experience-wrapper p {
    font-size: 17px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 48px;
    max-width: 680px;
}

.experience-image {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.services-hero-offset {
    padding: 110px 90px 80px;
    background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
}

.services-hero-text {
    max-width: 740px;
    margin-left: 8%;
}

.services-hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0d1821;
    margin-bottom: 22px;
    letter-spacing: -1.1px;
}

.services-hero-text p {
    font-size: 18px;
    line-height: 1.75;
    color: #4a5568;
}

.detailed-services {
    padding: 100px 0 120px;
    background-color: #ffffff;
}

.service-detail-block {
    max-width: 1360px;
    margin: 0 auto 80px;
    padding: 0 60px;
    display: flex;
    align-items: stretch;
    gap: 70px;
}

.offset-right {
    padding-left: 120px;
}

.offset-left {
    padding-right: 120px;
}

.offset-center {
    flex-direction: column;
    align-items: center;
}

.service-detail-content {
    width: 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content-full {
    width: 100%;
    max-width: 1000px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-text-section {
    flex: 1;
}

.service-image-inline {
    width: 420px;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

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

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 24px;
    letter-spacing: -0.7px;
}

.service-text-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 22px;
    letter-spacing: -0.6px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 28px;
}

.service-features {
    list-style: none;
    margin-bottom: 36px;
}

.service-features li {
    font-size: 15px;
    color: #2d3748;
    padding: 11px 0;
    padding-left: 26px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: 700;
    font-size: 16px;
}

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

.price-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

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

.select-service-detail {
    padding: 14px 36px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-detail:hover {
    background-color: #1e4d38;
    transform: translateX(4px);
}

.service-detail-image {
    width: 48%;
    height: 460px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.cta-services-page {
    padding: 90px 0;
    background: linear-gradient(135deg, #2d6a4f 0%, #1e4d38 100%);
}

.cta-content-centered {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.cta-content-centered h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.cta-content-centered p {
    font-size: 17px;
    line-height: 1.7;
    color: #d1fae5;
    margin-bottom: 36px;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 46px;
    background-color: #ffffff;
    color: #2d6a4f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #f0f9ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-hero {
    padding: 110px 90px 80px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.contact-hero-content {
    max-width: 680px;
}

.contact-hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    color: #0d1821;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

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

.contact-info-block {
    width: 42%;
    padding: 60px 80px 60px 90px;
    background-color: #f9fafb;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 44px;
    letter-spacing: -0.6px;
}

.info-item {
    margin-bottom: 38px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.info-item p {
    font-size: 15px;
    line-height: 1.75;
    color: #4a5568;
}

.contact-visual-block {
    width: 58%;
    overflow: hidden;
    position: relative;
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional-info {
    padding: 90px 0 100px;
    background-color: #ffffff;
}

.additional-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 90px;
}

.additional-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 28px;
    letter-spacing: -0.7px;
}

.additional-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 22px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

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

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 22px;
    letter-spacing: -0.8px;
}

.thanks-message {
    font-size: 17px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 32px;
}

.selected-service-info {
    padding: 20px 28px;
    background-color: #ecfdf5;
    border-left: 4px solid #2d6a4f;
    margin-bottom: 40px;
    border-radius: 6px;
    font-size: 15px;
    color: #064e3b;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4d38;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 106, 79, 0.25);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #e5e7eb;
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 100px 0 120px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 46px;
    font-weight: 700;
    color: #0d1821;
    margin-bottom: 42px;
    letter-spacing: -0.9px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0d1821;
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.4px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-top: 32px;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

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

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

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

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

.no-link {
    color: #4a5568;
    text-decoration: none;
    cursor: text;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
}

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

.cookie-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: #1f2937;
    border-bottom: 2px solid #d1d5db;
}

.cookie-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    line-height: 1.6;
}

.cookie-table tbody tr:hover {
    background-color: #f9fafb;
}

.legal-update {
    margin-top: 48px;
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
}

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

    .hero-content-offset,
    .hero-image-block {
        width: 100%;
    }

    .hero-content-offset {
        padding: 80px 40px;
    }

    .hero-image-block {
        height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
    }

    .intro-narrow,
    .intro-wide-image {
        width: 100%;
        padding-left: 0;
        margin-right: 0;
    }

    .services-header-offset {
        margin-left: 40px;
    }

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

    .card-image-container,
    .card-content {
        width: 100%;
    }

    .process-content-split {
        flex-direction: column;
        padding: 0 40px;
        gap: 40px;
    }

    .process-text,
    .process-image {
        width: 100%;
    }

    .service-detail-block {
        flex-direction: column;
        gap: 40px;
        padding: 0 40px;
    }

    .offset-right,
    .offset-left {
        padding-left: 40px;
        padding-right: 40px;
    }

    .service-detail-content,
    .service-detail-image {
        width: 100%;
    }

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

    .contact-info-block,
    .contact-visual-block {
        width: 100%;
    }

    .contact-visual-block {
        height: 400px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 16px;
    }

    .intro-narrow h2 {
        font-size: 32px;
    }

    .services-header-offset h2 {
        font-size: 34px;
    }

    .value-item {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}