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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
}

.nav-items {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 0.75rem;
    padding: 4px 10px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 4px;
    border: 1px solid #c8e6c9;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 5% 60px 8%;
    background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a3a2e;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

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

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 50%;
    max-width: 650px;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.story-diagonal {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
    background-color: #fafafa;
    position: relative;
}

.story-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #fafafa;
    transform: skewY(-2deg);
}

.story-block-right {
    flex: 1.2;
    padding-left: 5%;
}

.story-block-right h2 {
    font-size: 2.2rem;
    color: #1a3a2e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-block-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.citation {
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

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

.story-image-left {
    flex: 0.8;
    transform: translateX(-30px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: #c8e6c9;
}

.insight-offset {
    padding: 90px 8% 90px 12%;
    background-color: #ffffff;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.insight-small {
    flex: 0.7;
    position: sticky;
    top: 120px;
}

.insight-small h3 {
    font-size: 2rem;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.insight-small p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.insight-cards-scattered {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-float {
    background-color: #f9fdf9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-float:nth-child(2) {
    margin-left: 40px;
}

.card-float:nth-child(3) {
    margin-left: 80px;
}

.card-float:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-float h4 {
    font-size: 1.4rem;
    color: #1a3a2e;
    margin-bottom: 12px;
}

.card-float p {
    color: #555;
}

.testimonial-irregular {
    padding: 80px 5%;
    background: linear-gradient(to right, #e8f5e9 0%, #ffffff 50%);
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonial-block-overlap {
    flex: 1.3;
    padding: 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(40px);
    z-index: 2;
}

.testimonial-block-overlap blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-block-overlap cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    color: #27ae60;
    font-style: normal;
    font-weight: 600;
}

.testimonial-image-corner {
    flex: 0.7;
    border-radius: 50%;
    overflow: hidden;
    width: 350px;
    height: 350px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #c8e6c9;
}

.problem-amplification {
    padding: 90px 10% 90px 15%;
    background-color: #fafafa;
}

.problem-text-wide {
    max-width: 850px;
}

.problem-text-wide h2 {
    font-size: 2.4rem;
    color: #1a3a2e;
    margin-bottom: 30px;
}

.problem-text-wide p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefits-asymmetric {
    padding: 100px 5%;
    background-color: #ffffff;
}

.benefits-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 5%;
}

.benefits-header-offset h2 {
    font-size: 2.5rem;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.benefits-header-offset p {
    font-size: 1.1rem;
    color: #666;
}

.benefits-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.benefit-card {
    flex: 0 1 calc(33.333% - 30px);
    background-color: #f9fdf9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.benefit-card:nth-child(2),
.benefit-card:nth-child(5) {
    transform: translateY(30px);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.benefit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #c8e6c9;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #1a3a2e;
    margin: 25px 25px 15px;
}

.benefit-card p {
    color: #555;
    margin: 0 25px 15px;
    line-height: 1.7;
}

.benefit-card .price {
    font-size: 1.6rem;
    color: #27ae60;
    font-weight: 700;
    margin: 15px 25px;
}

.btn-select-service {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background-color: #27ae60;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #229954;
    transform: translateX(3px);
}

.form-section-offset {
    padding: 100px 5% 100px 10%;
    background: linear-gradient(135deg, #e8f5e9 0%, #f9fdf9 100%);
}

.form-container-diagonal {
    max-width: 700px;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.form-container-diagonal h2 {
    font-size: 2.2rem;
    color: #1a3a2e;
    margin-bottom: 15px;
    transform: rotate(1deg);
}

.form-container-diagonal > p {
    color: #666;
    margin-bottom: 30px;
    transform: rotate(1deg);
}

.contact-form {
    transform: rotate(1deg);
}

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

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

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

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

.selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin-bottom: 8px;
    color: #2c3e50;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

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

.trust-building {
    padding: 90px 8%;
    background-color: #fafafa;
}

.trust-content-scattered {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    padding: 35px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trust-item:nth-child(2) {
    transform: translateY(30px);
}

.trust-item h3 {
    font-size: 1.5rem;
    color: #1a3a2e;
    margin-bottom: 15px;
}

.trust-item p {
    color: #555;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a3a2e;
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

.footer-references {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-references h4 {
    font-size: 1.1rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.footer-references ol {
    list-style: decimal;
    padding-left: 20px;
}

.footer-references ol li {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-references ol li a {
    color: #7dd3a3;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 46, 0.97);
    color: white;
    padding: 25px 5%;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.about-hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 8% 80px 12%;
    background: linear-gradient(to right, #fafafa 0%, #ffffff 100%);
    gap: 60px;
}

.about-content-irregular {
    flex: 1;
}

.about-content-irregular h1 {
    font-size: 2.8rem;
    color: #1a3a2e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content-irregular p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.about-image-diagonal {
    flex: 1;
    transform: rotate(-2deg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #c8e6c9;
}

.about-story-scattered {
    padding: 90px 8%;
    background-color: #ffffff;
    display: flex;
    gap: 60px;
}

.story-text-offset {
    flex: 1.2;
}

.story-text-offset h2 {
    font-size: 2.2rem;
    color: #1a3a2e;
    margin-bottom: 25px;
}

.story-text-offset p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-cards-irregular {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    background-color: #f9fdf9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
    font-size: 1.4rem;
    color: #1a3a2e;
    margin-bottom: 12px;
}

.about-card p {
    color: #555;
    line-height: 1.7;
}

.values-asymmetric {
    padding: 90px 10%;
    background-color: #fafafa;
}

.values-header-small {
    margin-bottom: 50px;
    margin-left: 5%;
}

.values-header-small h2 {
    font-size: 2.4rem;
    color: #1a3a2e;
}

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

.value-block {
    flex: 0 1 calc(50% - 20px);
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.value-block:nth-child(odd) {
    transform: translateX(-20px);
}

.value-block:nth-child(even) {
    transform: translateX(20px);
}

.value-block:hover {
    transform: translateY(-5px) translateX(0);
}

.value-block h3 {
    font-size: 1.5rem;
    color: #1a3a2e;
    margin-bottom: 15px;
}

.value-block p {
    color: #555;
    line-height: 1.7;
}

.team-irregular {
    padding: 90px 8%;
    background-color: #ffffff;
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-intro-offset {
    flex: 1;
}

.team-intro-offset h2 {
    font-size: 2.2rem;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.team-intro-offset p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.team-image-scattered {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    background-color: #c8e6c9;
}

.services-header-diagonal {
    padding: 90px 8% 60px 12%;
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
}

.services-intro-offset {
    max-width: 750px;
}

.services-intro-offset h1 {
    font-size: 2.8rem;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.services-intro-offset p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.services-grid-asymmetric {
    padding: 60px 8%;
    background-color: #ffffff;
}

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

.service-item-offset:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-diagonal {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #c8e6c9;
}

.service-content {
    flex: 1.2;
}

.service-content h2 {
    font-size: 2rem;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    color: #27ae60;
    font-weight: 700;
    margin: 20px 0;
}

.cta-section-offset {
    padding: 90px 10%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
}

.cta-content-diagonal {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-diagonal h2 {
    font-size: 2.4rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content-diagonal p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: white;
    color: #27ae60;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-header-offset {
    padding: 90px 8% 60px 12%;
    background: linear-gradient(to right, #fafafa 0%, #ffffff 100%);
}

.contact-intro-irregular h1 {
    font-size: 2.8rem;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.contact-intro-irregular p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.contact-info-asymmetric {
    padding: 60px 8%;
    background-color: #ffffff;
    display: flex;
    gap: 60px;
}

.contact-details-scattered {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    background-color: #f9fdf9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-block h2 {
    font-size: 1.5rem;
    color: #1a3a2e;
    margin-bottom: 15px;
}

.contact-block p {
    color: #555;
    line-height: 1.7;
}

.contact-map-offset {
    flex: 1;
}

.contact-visual-placeholder {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 400px;
    background-color: #c8e6c9;
}

.contact-visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional-info {
    padding: 60px 10%;
    background-color: #fafafa;
}

.info-block-diagonal {
    max-width: 750px;
    margin: 0 auto;
}

.info-block-diagonal h2 {
    font-size: 2rem;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.info-block-diagonal p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.info-block-diagonal ul {
    list-style: disc;
    padding-left: 25px;
    margin: 20px 0;
}

.info-block-diagonal ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-hero-offset {
    display: flex;
    align-items: center;
    padding: 90px 8%;
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    gap: 60px;
    min-height: 70vh;
}

.thanks-content-diagonal {
    flex: 1;
}

.thanks-content-diagonal h1 {
    font-size: 2.8rem;
    color: #1a3a2e;
    margin-bottom: 25px;
}

.thanks-content-diagonal p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-action,
.btn-action-secondary {
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-action {
    background-color: #27ae60;
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

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

.btn-action-secondary {
    background-color: white;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.btn-action-secondary:hover {
    background-color: #f9fdf9;
}

.thanks-image-irregular {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    background-color: #c8e6c9;
}

.thanks-next-steps {
    padding: 80px 10%;
    background-color: #fafafa;
}

.next-steps-content-offset h2 {
    font-size: 2.2rem;
    color: #1a3a2e;
    margin-bottom: 40px;
    text-align: center;
}

.steps-grid-asymmetric {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 350px;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #27ae60;
}

.step-item:nth-child(2) {
    transform: translateY(20px);
}

.step-item h3 {
    font-size: 1.4rem;
    color: #1a3a2e;
    margin-bottom: 15px;
}

.step-item p {
    color: #555;
    line-height: 1.7;
}

.legal-content {
    padding: 80px 10%;
    background-color: #fafafa;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #1a3a2e;
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a3a2e;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul,
.legal-container ol {
    padding-left: 25px;
    margin: 20px 0;
}

.legal-container ul li,
.legal-container ol li {
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

.legal-container a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-container a:hover {
    color: #229954;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        transform: rotate(0);
        margin-top: 30px;
    }

    .story-diagonal,
    .testimonial-irregular,
    .about-hero-offset,
    .about-story-scattered,
    .team-irregular,
    .contact-info-asymmetric,
    .thanks-hero-offset {
        flex-direction: column;
    }

    .insight-offset {
        flex-direction: column;
    }

    .insight-small {
        position: relative;
        top: 0;
    }

    .card-float:nth-child(2),
    .card-float:nth-child(3) {
        margin-left: 0;
    }

    .benefits-grid-irregular {
        flex-direction: column;
    }

    .benefit-card {
        flex: 1 1 100%;
    }

    .benefit-card:nth-child(2),
    .benefit-card:nth-child(5) {
        transform: translateY(0);
    }

    .trust-content-scattered,
    .steps-grid-asymmetric {
        flex-direction: column;
    }

    .trust-item:nth-child(2),
    .step-item:nth-child(2) {
        transform: translateY(0);
    }

    .service-item-offset {
        flex-direction: column;
    }

    .service-item-offset:nth-child(even) {
        flex-direction: column;
    }

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

    .value-block {
        flex: 1 1 100%;
    }

    .value-block:nth-child(odd),
    .value-block:nth-child(even) {
        transform: translateX(0);
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
