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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-asymmetric {
    padding: 20px 0;
    position: relative;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-items {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-items a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: #27ae60;
}

.hero-asymmetric {
    padding: 80px 0 100px;
    background-color: #f8f9fa;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    padding-left: 80px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-right: -40px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #27ae60;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #27ae60;
    transition: all 0.3s ease;
}

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

.intro-diagonal {
    padding: 100px 0;
    background-color: #ffffff;
}

.split-content-irregular {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.content-left-narrow {
    flex: 0 0 45%;
    padding-left: 60px;
}

.content-left-narrow h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-left-narrow p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.content-right-wide {
    flex: 1;
    position: relative;
    margin-left: -20px;
}

.content-right-wide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.services-cards-staggered {
    padding: 120px 0;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    margin-left: 40px;
}

.cards-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    transition: all 0.3s ease;
}

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

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 60px;
}

.card-offset-3 {
    margin-left: 120px;
}

.card-offset-4 {
    margin-left: 40px;
}

.card-offset-5 {
    margin-left: 80px;
}

.card-offset-6 {
    margin-left: 20px;
}

.service-card img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
    flex: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateX(4px);
}

.form-section-floating {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.form-wrapper-asymmetric {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 80px;
}

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

.form-intro {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    color: #27ae60;
    font-weight: 600;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    padding: 16px 48px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.trust-section-overlap {
    padding: 100px 0;
    background-color: #ffffff;
}

.trust-content-irregular {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #4a5568;
}

.benefits-list {
    list-style: none;
    margin-top: 32px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.trust-image-offset {
    flex: 0 0 45%;
    margin-right: -60px;
}

.trust-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content-irregular {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #27ae60;
}

.footer-col-1 {
    flex: 1;
}

.footer-col-2 {
    flex: 0 0 200px;
}

.footer-col-3 {
    flex: 0 0 250px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

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

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

.about-intro-asymmetric {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text-block {
    flex: 1;
    padding-right: 40px;
}

.about-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.about-image-floating {
    flex: 0 0 500px;
    position: relative;
    margin-top: -40px;
}

.about-image-floating img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0;
}

.philosophy-section-irregular {
    padding: 100px 0;
    background-color: #ffffff;
}

.content-blocks-staggered {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.text-block-wide {
    max-width: 900px;
    margin-left: 80px;
}

.text-block-wide h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.text-block-wide p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.text-block-narrow {
    max-width: 600px;
    margin-left: 200px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.text-block-narrow h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.text-block-narrow p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.values-section-overlap {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.value-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-offset-1 {
    margin-left: 40px;
    margin-right: 200px;
}

.value-offset-2 {
    margin-left: 180px;
    margin-right: 80px;
}

.value-offset-3 {
    margin-left: 100px;
    margin-right: 160px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

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

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

.process-steps-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

.step-1 {
    margin-left: 0;
}

.step-2 {
    margin-left: 80px;
}

.step-3 {
    margin-left: 160px;
}

.step-4 {
    margin-left: 240px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    opacity: 0.3;
    flex-shrink: 0;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.cta-section-floating {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box-asymmetric {
    background-color: #27ae60;
    color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(39, 174, 96, 0.3);
    transform: rotate(-1deg);
}

.cta-box-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box-asymmetric p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-box-asymmetric .btn-secondary {
    background-color: #ffffff;
    color: #27ae60;
    border: none;
}

.cta-box-asymmetric .btn-secondary:hover {
    background-color: #f8f9fa;
}

.services-hero-diagonal {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-title-offset {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    margin-left: 60px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 800px;
    margin-left: 60px;
}

.services-detailed-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.layout-left .service-image {
    order: 1;
}

.layout-left .service-info {
    order: 2;
}

.layout-right .service-image {
    order: 2;
}

.layout-right .service-info {
    order: 1;
}

.service-image {
    flex: 0 0 45%;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-features {
    list-style: none;
    margin: 28px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing {
    margin: 32px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 16px;
}

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

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

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

.cta-box-centered {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-box-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-box-centered p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4a5568;
}

.contact-hero-asymmetric {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-title-offset {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    margin-left: 80px;
}

.contact-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-left: 80px;
    max-width: 700px;
}

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

.contact-layout-irregular {
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: flex-start;
}

.contact-details-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-item h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.contact-image-block {
    flex: 0 0 45%;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.contact-additional-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.info-boxes-staggered {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-box {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-box-1 {
    margin-left: 0;
    margin-right: 200px;
}

.info-box-2 {
    margin-left: 120px;
    margin-right: 80px;
}

.info-box-3 {
    margin-left: 60px;
    margin-right: 160px;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.contact-cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-box-floating {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.cta-box-floating h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-box-floating p {
    font-size: 16px;
    margin-bottom: 28px;
    color: #4a5568;
}

.thanks-section-centered {
    padding: 120px 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-content-box {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    color: #27ae60;
    font-weight: 600;
}

.selected-service-text {
    margin: 0;
}

.next-steps {
    margin: 48px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.steps-list {
    list-style: none;
    margin-left: 40px;
}

.steps-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.steps-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 24px;
}

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

.additional-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.info-cards-asymmetric {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

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

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.info-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.link-arrow {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #229954;
    text-decoration: underline;
}

.legal-page-section {
    padding: 80px 0;
    background-color: #ffffff;
    min-height: 70vh;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 20px 0;
    margin-left: 32px;
}

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

.legal-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

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

@media (max-width: 1024px) {
    .hero-content-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block {
        padding-left: 20px;
    }

    .hero-image-overlap {
        margin-right: 0;
    }

    .split-content-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .content-left-narrow {
        padding-left: 20px;
    }

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

    .service-card img {
        width: 100%;
        height: 300px;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-offset-6 {
        margin-left: 0;
    }

    .form-wrapper-asymmetric {
        margin-left: 0;
    }

    .trust-content-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .trust-image-offset {
        margin-right: 0;
    }

    .service-detail-item {
        flex-direction: column;
        gap: 40px;
    }

    .layout-left .service-image,
    .layout-left .service-info,
    .layout-right .service-image,
    .layout-right .service-info {
        order: initial;
    }

    .contact-layout-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .info-cards-asymmetric {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .nav-items {
        gap: 20px;
        font-size: 14px;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 32px;
    }

    .hero-title-offset {
        margin-left: 0;
        font-size: 36px;
    }

    .contact-title-offset {
        margin-left: 20px;
        font-size: 36px;
    }

    .contact-subtitle {
        margin-left: 20px;
    }

    .step-1,
    .step-2,
    .step-3,
    .step-4 {
        margin-left: 0;
    }

    .text-block-wide {
        margin-left: 0;
    }

    .text-block-narrow {
        margin-left: 0;
    }

    .value-offset-1,
    .value-offset-2,
    .value-offset-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .info-box-1,
    .info-box-2,
    .info-box-3 {
        margin-left: 0;
        margin-right: 0;
    }

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

    .about-image-floating {
        margin-top: 0;
    }
}