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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a4d2e;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 0 1rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #1a4d2e;
}

.hero-asymmetric {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-offset-container {
    display: flex;
    align-items: stretch;
    min-height: 85vh;
}

.hero-text-block {
    flex: 1;
    padding: 5rem 3rem 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafbfc;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    max-width: 600px;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-image-block {
    flex: 1.3;
    position: relative;
    overflow: hidden;
    margin-left: -3rem;
    margin-top: 4rem;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a4d2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #145a32;
    transform: translateY(-2px);
}

.intro-diagonal {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.diagonal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    transform: skewY(-2deg);
}

.content-narrow {
    transform: skewY(2deg);
}

.content-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.content-narrow p {
    font-size: 1.1rem;
    color: #556270;
    line-height: 1.8;
}

.services-staggered {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem 10%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
}

.service-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2.5rem;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.left-offset {
    margin-left: 5%;
    margin-right: 15%;
}

.right-offset {
    margin-left: 15%;
    margin-right: 5%;
}

.center-offset {
    margin-left: 10%;
    margin-right: 10%;
}

.left-offset-small {
    margin-left: 8%;
    margin-right: 20%;
}

.right-offset-large {
    margin-left: 20%;
    margin-right: 8%;
}

.service-image-container {
    flex: 0 0 280px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details p {
    font-size: 1rem;
    color: #556270;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a4d2e;
    margin: 1.5rem 0;
}

.btn-service {
    padding: 0.8rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #1a252f;
    transform: translateX(5px);
}

.form-section-offset {
    padding: 6rem 5%;
    background-color: #f4f7f5;
}

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

.form-intro-block {
    flex: 1;
    padding-right: 2rem;
}

.form-intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.form-intro-block p {
    font-size: 1.1rem;
    color: #556270;
    line-height: 1.7;
}

.contact-form {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a4d2e;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a4d2e;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #1a4d2e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-block {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.trust-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(-2deg);
}

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

.trust-text {
    flex: 1;
    padding-left: 2rem;
}

.trust-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-text p {
    font-size: 1.05rem;
    color: #556270;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.testimonial-scattered {
    padding: 5rem 5%;
    background: linear-gradient(120deg, #fafbfc 0%, #f4f7f5 100%);
}

.testimonial-heading {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    color: #2c3e50;
}

.testimonial-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 10px;
    border-left: 4px solid #1a4d2e;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.offset-1 {
    margin-left: 8%;
    margin-right: 20%;
}

.offset-2 {
    margin-left: 20%;
    margin-right: 10%;
}

.offset-3 {
    margin-left: 12%;
    margin-right: 15%;
}

.science-references {
    padding: 4rem 5%;
    background-color: #f9fafb;
}

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

.science-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.science-content p {
    font-size: 1.05rem;
    color: #556270;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.science-content a {
    color: #1a4d2e;
    text-decoration: none;
    border-bottom: 1px solid #1a4d2e;
}

.science-content a:hover {
    opacity: 0.8;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fff9e6;
    border-top: 2px solid #f4d03f;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1.5rem;
}

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-references ol li a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-references ol li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie {
    background-color: #1a4d2e;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #145a32;
}

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

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

.page-hero-offset {
    padding: 5rem 5% 3rem 10%;
    background: linear-gradient(135deg, #f4f7f5 0%, #ffffff 100%);
}

.hero-content-left {
    max-width: 900px;
}

.hero-content-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: #556270;
    line-height: 1.7;
}

.about-story {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.story-layout-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text-wide {
    flex: 1.5;
}

.story-text-wide h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text-wide p {
    font-size: 1.05rem;
    color: #556270;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.story-image-small {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    transform: rotate(3deg);
}

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

.values-section {
    padding: 5rem 5%;
    background-color: #fafbfc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    color: #2c3e50;
}

.values-grid-staggered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.value-card p {
    font-size: 1.05rem;
    color: #556270;
    line-height: 1.7;
}

.team-section-minimal {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.team-intro p {
    font-size: 1.1rem;
    color: #556270;
    line-height: 1.7;
}

.team-stats {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: #f4f7f5;
    border-radius: 10px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1rem;
    color: #7f8c8d;
}

.approach-section {
    padding: 5rem 5%;
    background-color: #f9fafb;
}

.approach-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.approach-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.approach-step {
    margin-bottom: 2rem;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: #1a4d2e;
}

.approach-step p {
    font-size: 1rem;
    color: #556270;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a4d2e 0%, #145a32 100%);
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #1a4d2e;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s;
}

.btn-cta-large:hover {
    transform: scale(1.05);
}

.services-hero {
    padding: 5rem 5% 3rem;
    background: linear-gradient(120deg, #f4f7f5 0%, #fafbfc 100%);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #556270;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.service-item-layout {
    max-width: 1300px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-item-layout.right-aligned {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.service-description p {
    font-size: 1.05rem;
    color: #556270;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #556270;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a4d2e;
    font-weight: 700;
}

.service-pricing {
    margin: 1.5rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a4d2e;
}

.services-cta {
    padding: 4rem 5%;
    background-color: #f4f7f5;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cta-box-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-box-centered p {
    font-size: 1.05rem;
    color: #556270;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a4d2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #145a32;
}

.contact-hero {
    padding: 4rem 5% 2rem;
    background: linear-gradient(135deg, #f4f7f5 0%, #ffffff 100%);
}

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

.contact-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #556270;
}

.contact-main {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.contact-layout-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a4d2e;
}

.contact-item p {
    font-size: 1rem;
    color: #556270;
    line-height: 1.7;
}

.contact-note {
    background-color: #f4f7f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #556270;
    margin: 0;
}

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

.contact-form-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-section {
    padding: 6rem 5%;
    background-color: #fafbfc;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #1a4d2e;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-content > p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.submission-info {
    background-color: #e8f5e9;
    padding: 1.2rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: #1a4d2e;
}

.thanks-message {
    margin: 2rem 0;
}

.thanks-message p {
    font-size: 1rem;
    color: #556270;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a4d2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #145a32;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

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

.legal-page {
    padding: 5rem 5%;
    background-color: #fafbfc;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    border-bottom: 3px solid #1a4d2e;
    padding-bottom: 1rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a4d2e;
}

.legal-section p {
    font-size: 1rem;
    color: #556270;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 1rem;
    color: #556270;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.legal-section a {
    color: #1a4d2e;
    text-decoration: none;
    border-bottom: 1px solid #1a4d2e;
}

.legal-section a:hover {
    opacity: 0.8;
}

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

    .hero-image-block {
        margin-left: 0;
        margin-top: 2rem;
        min-height: 400px;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

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

    .service-image-container {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }

    .left-offset,
    .right-offset,
    .center-offset,
    .left-offset-small,
    .right-offset-large {
        margin-left: 0;
        margin-right: 0;
    }

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

    .form-container-asymmetric {
        flex-direction: column;
    }

    .trust-content-wrapper,
    .story-layout-asymmetric,
    .approach-layout,
    .service-item-layout,
    .contact-layout-split {
        flex-direction: column;
    }

    .nav {
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-disclosure {
        margin: 0.5rem 0;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .section-header-offset h2,
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .trust-stats {
        flex-direction: column;
    }

    .team-stats {
        flex-direction: column;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
