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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 25px 0;
    border-bottom: 2px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-block .brand {
    font-size: 28px;
    font-weight: 700;
    color: #2a7f62;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    gap: 35px;
}

.nav-floating a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-floating a:hover {
    color: #2a7f62;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background-color: #e9ecef;
}

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

.hero-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 80px 40px 80px 100px;
    background: linear-gradient(to right, #ffffff 70%, rgba(255,255,255,0.95) 100%);
}

.hero-text-overlay h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 700;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2a7f62;
    color: #ffffff;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.intro-offset {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.intro-left {
    flex: 1;
    padding-left: 60px;
}

.intro-left h3 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a252f;
    margin-bottom: 20px;
}

.intro-right {
    flex: 1;
}

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

.services-preview-cards {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-title-offset {
    max-width: 800px;
    margin: 0 0 60px 120px;
}

.section-title-offset h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.section-title-offset p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
}

.cards-irregular {
    max-width: 1300px;
    margin: 0 auto 50px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-service {
    width: 380px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-position-1 {
    margin-top: 0;
}

.card-position-2 {
    margin-top: 40px;
}

.card-position-3 {
    margin-top: 20px;
}

.card-image {
    width: 100%;
    height: 220px;
    background-color: #e9ecef;
}

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

.card-service h4 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a252f;
}

.card-service p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #495057;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2a7f62;
    margin: 20px 25px;
}

.btn-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background-color: #2a7f62;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #236854;
}

.cards-irregular-row-two {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-position-4 {
    margin-top: 60px;
}

.card-position-5 {
    margin-top: 10px;
}

.cta-inline-services {
    text-align: center;
    margin-top: 60px;
    font-size: 18px;
}

.cta-inline-services a {
    color: #2a7f62;
    text-decoration: underline;
    font-weight: 600;
}

.cta-inline-services a:hover {
    text-decoration: none;
}

.trust-section-offset {
    padding: 100px 40px;
    background-color: #f8f9fa;
    display: flex;
    gap: 100px;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-content-left {
    flex: 1;
    padding-right: 40px;
}

.trust-content-left h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.trust-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-inline {
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #2a7f62;
    border-radius: 4px;
}

.testimonial-inline p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    color: #495057;
}

.testimonial-inline cite {
    font-size: 14px;
    font-style: normal;
    color: #6c757d;
}

.process-asymmetric {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-title-centered {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a252f;
}

.process-grid-offset {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.step-2 {
    margin-top: 40px;
}

.step-3 {
    margin-top: 20px;
}

.step-4 {
    margin-top: 60px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #2a7f62;
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

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

.form-container-offset {
    max-width: 700px;
    margin: 0 0 0 auto;
    padding-right: 100px;
}

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #495057;
}

.consultation-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a252f;
}

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

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

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

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
    border: 1px solid #dee2e6;
    padding: 25px;
    border-radius: 4px;
    background-color: #f8f9fa;
}

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

.footer-grid {
    max-width: 1300px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #dee2e6;
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.cookie-link {
    color: #2a7f62;
    font-size: 13px;
    text-decoration: underline;
}

.cookie-link:hover {
    text-decoration: none;
}

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

.about-hero-content {
    flex: 1;
    padding-right: 40px;
}

.about-hero-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
}

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

.about-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.about-story-asymmetric {
    padding: 100px 40px;
    background-color: #f8f9fa;
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content-left,
.story-content-right {
    flex: 1;
}

.story-content-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

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

.section-title-left {
    font-size: 36px;
    margin-bottom: 50px;
    padding-left: 100px;
    color: #1a252f;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member:nth-child(2) {
    margin-top: 40px;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.values-asymmetric {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.value-block {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #2a7f62;
    border-radius: 4px;
}

.value-1 {
    margin-top: 0;
}

.value-2 {
    margin-top: 50px;
}

.value-3 {
    margin-top: 25px;
}

.value-block h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.about-approach {
    padding: 100px 40px;
    background-color: #ffffff;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 80px;
}

.approach-content h3 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.cta-about-section {
    padding: 100px 40px;
    background-color: #2a7f62;
    text-align: center;
}

.cta-about-content h3 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.btn-cta-about {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2a7f62;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-about:hover {
    background-color: #f8f9fa;
}

.services-hero {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
}

.service-detail-asymmetric {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail-asymmetric.service-detail-reverse {
    background-color: #f8f9fa;
}

.service-detail-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

.service-content-right,
.service-content-left {
    flex: 1;
}

.service-content-right h3,
.service-content-left h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

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

.service-content-right h4,
.service-content-left h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #1a252f;
}

.service-content-right ul,
.service-content-left ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-content-right ul li,
.service-content-left ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #495057;
}

.btn-service-detail {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2a7f62;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-service-detail:hover {
    background-color: #236854;
}

.services-cta-section {
    padding: 80px 40px;
    background-color: #2a7f62;
    text-align: center;
}

.services-cta-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.services-cta-content p {
    font-size: 17px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.btn-services-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2a7f62;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-services-cta:hover {
    background-color: #f8f9fa;
}

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

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

.contact-hero-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-hero-content p {
    font-size: 18px;
    color: #495057;
}

.contact-main-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
}

.contact-info-block,
.contact-note-block {
    flex: 1;
}

.contact-info-block h3,
.contact-note-block h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a252f;
    font-weight: 600;
}

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

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

.contact-note-block ul {
    margin-top: 15px;
    padding-left: 20px;
}

.contact-note-block ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #495057;
}

.contact-approach-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-approach-content h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.approach-steps-offset {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.approach-step:nth-child(2) {
    margin-top: 30px;
}

.approach-step:nth-child(3) {
    margin-top: 15px;
}

.approach-step:nth-child(4) {
    margin-top: 45px;
}

.step-num {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #2a7f62;
    margin-bottom: 15px;
}

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

.contact-map-section {
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background-color: rgba(255,255,255,0.95);
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
}

.map-overlay p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin: 0;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

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

.thanks-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #495057;
}

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

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a252f;
}

.next-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

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

.next-step p {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin: 0;
    padding-top: 8px;
}

.thanks-info {
    margin: 40px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.thanks-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 8px;
}

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

.btn-back-home,
.btn-view-services {
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-back-home {
    background-color: #2a7f62;
    color: #ffffff;
}

.btn-back-home:hover {
    background-color: #236854;
}

.btn-view-services {
    background-color: #e9ecef;
    color: #1a252f;
}

.btn-view-services:hover {
    background-color: #dee2e6;
}

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

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

.legal-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a252f;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #495057;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.legal-container h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: #1a252f;
}

.legal-container h4 {
    font-size: 19px;
    margin: 30px 0 15px;
    color: #1a252f;
}

.legal-container p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.legal-container ul {
    margin: 20px 0 20px 20px;
}

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

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #dee2e6;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-floating {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-image-offset {
        position: static;
        width: 100%;
        height: 300px;
    }

    .hero-text-overlay {
        padding: 40px 20px;
        background: #ffffff;
    }

    .intro-container,
    .trust-section-offset,
    .about-story-asymmetric,
    .contact-grid-offset {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-container {
        flex-direction: column;
    }

    .cards-irregular,
    .cards-irregular-row-two {
        flex-direction: column;
        align-items: center;
    }

    .card-position-1,
    .card-position-2,
    .card-position-3,
    .card-position-4,
    .card-position-5 {
        margin-top: 0;
    }

    .process-grid-offset {
        flex-direction: column;
    }

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

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

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