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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #8e44ad;
    --color-accent: #e74c3c;
    --color-light: #ecf0f1;
    --color-dark: #1a1a1a;
    --color-text: #2d3436;
    --color-bg: #ffffff;
    --color-overlay: rgba(44, 62, 80, 0.8);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--color-secondary);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-light);
}

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

.header-asymmetric {
    background-color: var(--color-bg);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-block {
    margin-right: auto;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-secondary);
}

.main-nav a:hover::after {
    width: 100%;
}

.ad-disclosure {
    padding: 0.5rem 1rem;
    background-color: var(--color-light);
    border-radius: 4px;
}

.ad-label {
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: 600;
}

.main-asymmetric {
    padding-top: 0;
}

.hero-offset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 2rem 3rem 8rem;
    background-color: #f8f9fa;
    min-height: 600px;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
    padding-right: 3rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #732d91;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -50px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.intro-overlap {
    padding: 4rem 2rem 4rem 2rem;
    background-color: var(--color-bg);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

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

.intro-card {
    flex: 1.5;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-image-offset {
    flex: 1;
    margin-top: -100px;
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.services-irregular {
    padding: 5rem 2rem;
    background-color: #fafbfc;
}

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 4rem 6rem;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.section-header-offset p {
    font-size: 1.2rem;
    color: var(--color-text);
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-offset-2 {
    margin-top: 50px;
}

.card-offset-3 {
    margin-top: 25px;
}

.card-offset-4 {
    margin-top: 75px;
}

.card-offset-5 {
    margin-top: 40px;
}

.card-offset-6 {
    margin-top: 60px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--color-light);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select:hover {
    background-color: #1a2633;
    transform: translateY(-2px);
}

.btn-select:active {
    transform: translateY(0);
}

.form-section-overlap {
    padding: 6rem 2rem;
    background-color: var(--color-primary);
    position: relative;
    margin-top: -50px;
}

.form-wrapper-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--color-text);
}

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

.service-display {
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: center;
}

.service-display.selected {
    background-color: #d4edda;
    border: 2px solid #28a745;
}

.service-display p {
    font-size: 1.1rem;
    color: var(--color-text);
}

.service-display strong {
    color: var(--color-secondary);
    font-size: 1.3rem;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover:not(:disabled) {
    background-color: #732d91;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.trust-section-irregular {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.testimonials-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-offset {
    margin-top: 40px;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--color-text);
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-secondary);
}

.info-block-offset {
    padding: 5rem 2rem 5rem 4rem;
    background-color: var(--color-bg);
}

.info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.info-text {
    flex: 1.5;
}

.info-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.info-image-irregular {
    flex: 1;
    margin-top: -60px;
}

.info-image-irregular img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #856404;
    text-align: center;
}

.footer-asymmetric {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 2rem 2rem 2rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-col-offset-1 {
    margin-top: 0;
}

.footer-col-offset-2 {
    margin-top: 20px;
}

.footer-col-offset-3 {
    margin-top: 10px;
}

.footer-col-offset-4 {
    margin-top: 30px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--color-light);
}

.about-hero-offset {
    padding: 6rem 2rem 4rem 4rem;
    background-color: #f8f9fa;
}

.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-wrapper h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.about-intro-irregular {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-text-block {
    flex: 1.5;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-image-offset {
    flex: 1;
    margin-top: 50px;
}

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

.story-section-asymmetric {
    padding: 5rem 4rem 5rem 8rem;
    background-color: var(--color-bg);
}

.story-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.story-content-irregular p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-section-offset {
    padding: 5rem 2rem;
    background-color: #fafbfc;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image-left {
    flex: 1;
}

.approach-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.approach-text-right {
    flex: 1.5;
}

.approach-text-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.approach-text-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.values-section-irregular {
    padding: 5rem 2rem;
    background-color: var(--color-bg);
}

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.values-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.value-offset-2 {
    margin-top: 40px;
}

.value-offset-3 {
    margin-top: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

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

.cta-section-offset {
    padding: 5rem 2rem;
    background-color: var(--color-secondary);
    text-align: center;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: white;
    color: var(--color-secondary);
}

.btn-primary:hover {
    background-color: var(--color-light);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.services-hero-offset {
    padding: 6rem 2rem 4rem 6rem;
    background-color: #f8f9fa;
}

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

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.services-hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--color-text);
}

.services-detail-irregular {
    padding: 4rem 2rem;
    background-color: var(--color-bg);
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-block-offset-1 {
    margin-left: 0;
}

.service-block-offset-2 {
    margin-left: 4rem;
}

.service-block-offset-3 {
    margin-left: 2rem;
}

.service-block-offset-4 {
    margin-left: 6rem;
}

.service-block-offset-5 {
    margin-left: 1rem;
}

.service-block-offset-6 {
    margin-left: 5rem;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.service-detail-content {
    flex: 1.5;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #1a2633;
    transform: translateY(-3px);
}

.cta-services-offset {
    padding: 5rem 2rem;
    background-color: var(--color-light);
    text-align: center;
}

.cta-services-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-services-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.cta-services-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #732d91;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.3);
}

.contact-hero-offset {
    padding: 6rem 2rem 4rem 6rem;
    background-color: #f8f9fa;
}

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

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.contact-hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--color-text);
}

.contact-info-irregular {
    padding: 5rem 2rem;
    background-color: var(--color-bg);
}

.contact-wrapper-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-block {
    flex: 1 1 calc(33.333% - 3rem);
    min-width: 250px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-offset-1 {
    margin-top: 0;
}

.contact-offset-2 {
    margin-top: 40px;
}

.contact-offset-3 {
    margin-top: 20px;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.contact-cta-offset {
    padding: 5rem 2rem;
    background-color: #fafbfc;
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.btn-contact-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-contact-cta:hover {
    background-color: #732d91;
    transform: translateY(-3px);
}

.thanks-section-offset {
    padding: 8rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.thanks-service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #d4edda;
    border-radius: 6px;
}

.thanks-service-selected {
    font-size: 1.1rem;
    color: #155724;
}

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

.legal-page {
    padding: 4rem 2rem;
    background-color: var(--color-bg);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-container > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--color-secondary);
}

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

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 1200px) {
    .hero-offset {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .hero-content-left {
        padding-right: 0;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .intro-wrapper,
    .info-wrapper,
    .approach-wrapper {
        flex-direction: column;
    }

    .intro-image-offset,
    .info-image-irregular {
        margin-top: 0;
    }

    .service-detail-block {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .services-grid-asymmetric .service-card {
        margin-top: 0 !important;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .story-section-asymmetric {
        padding: 4rem 2rem;
    }
}

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

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .form-wrapper-asymmetric {
        transform: rotate(0);
    }

    .contact-form-asymmetric {
        transform: rotate(0);
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .footer-wrapper {
        flex-direction: column;
    }

    .footer-column {
        margin-top: 0 !important;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .values-grid-asymmetric .value-card {
        margin-top: 0 !important;
    }

    .contact-wrapper-asymmetric .contact-block {
        margin-top: 0 !important;
    }
}