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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #22c55e;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.container-offset {
    max-width: 1100px;
    margin: 0 60px 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

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

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand .logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-asymmetric {
    padding: 80px 20px 100px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-text-block {
    max-width: 650px;
    margin-left: 60px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.hero-image-overlap {
    margin-top: -120px;
    margin-left: auto;
    margin-right: 40px;
    max-width: 700px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background-color: var(--border-color);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-split {
    padding: 120px 20px;
    background-color: var(--bg-white);
}

.intro-left {
    max-width: 520px;
    padding-right: 40px;
}

.intro-left h3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.intro-right-offset {
    margin-top: -80px;
    margin-left: auto;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--border-color);
}

.intro-right-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-amplify {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, var(--bg-light) 100%);
}

.problem-block {
    max-width: 780px;
    margin: 0 auto 0 80px;
    padding: 50px;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.problem-block h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.problem-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-creative {
    padding: 120px 20px;
    background-color: var(--bg-white);
}

.services-header-offset {
    max-width: 600px;
    margin: 0 0 80px 100px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.services-header-offset p {
    font-size: 20px;
    color: var(--text-light);
}

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

.service-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

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

.card-offset-2 {
    margin-right: 80px;
}

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

.card-offset-4 {
    margin-right: 120px;
}

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

.service-image-wrap {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-content {
    flex: 1;
}

.service-content h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-elements {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.trust-content-block h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.trust-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.trust-item:nth-child(2) {
    margin-top: 40px;
}

.trust-item h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonials-offset {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.testimonials-wrapper h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    max-width: 800px;
}

.testimonial-offset {
    margin-left: auto;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.cta-section-irregular {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-block-overlap {
    max-width: 900px;
    margin: 0 auto 0 100px;
    color: var(--bg-white);
}

.cta-block-overlap h3 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-block-overlap p {
    font-size: 20px;
    line-height: 1.6;
}

.contact-form-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 60px 0 auto;
    padding: 50px;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-container-offset h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-bottom .disclaimer {
    max-width: 900px;
    margin: 20px auto 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-offset {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto 0 80px;
}

.page-hero-content h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.story-text-offset {
    max-width: 650px;
    margin-bottom: 40px;
}

.story-text-offset h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-text-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image-overlap {
    max-width: 700px;
    margin-left: auto;
    margin-right: 60px;
    margin-top: -60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--border-color);
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.values-container-offset h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

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

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-offset {
    margin-top: 60px;
}

.value-block h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.approach-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.approach-image-side {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--border-color);
}

.approach-image-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-text-side {
    flex: 1;
}

.approach-text-side h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.approach-text-side p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-highlight {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.team-content-offset {
    max-width: 800px;
    margin: 0 auto 0 100px;
    padding: 50px;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.team-content-offset h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.team-content-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-about {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.cta-content-centered h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.services-detailed {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.service-reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--border-color);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing-detail {
    margin-bottom: 24px;
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.packages-info {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.packages-content {
    max-width: 900px;
    margin: 0 80px 0 auto;
    padding: 50px;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.packages-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.packages-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-content-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

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

.contact-info-block h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 32px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.info-note {
    margin-top: 40px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-image-offset {
    flex: 1;
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--border-color);
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.working-together {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

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

.together-content h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.process-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    flex: 1;
    min-width: 260px;
    padding: 36px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    opacity: 0.2;
}

.process-step h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 100%);
}

.thanks-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    margin-bottom: 32px;
}

.thanks-content-centered h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-confirmation {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.next-steps-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

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

.next-step-item {
    flex: 1;
    min-width: 280px;
    padding: 36px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.next-step-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.next-step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-cta {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-link {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.legal-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-content-offset,
    .services-grid-asymmetric,
    .service-detail-block,
    .approach-wrapper,
    .contact-wrapper-asymmetric {
        flex-direction: column;
    }

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

    .hero-image-overlap {
        margin-top: 40px;
        margin-left: 0;
        margin-right: 0;
    }

    .intro-right-offset {
        margin-top: 40px;
        margin-left: 0;
    }

    .story-image-overlap {
        margin-top: 40px;
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .page-hero-content {
        margin-left: 0;
    }

    .page-hero-content h2 {
        font-size: 38px;
    }

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

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

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

    .service-image-wrap {
        width: 100%;
        height: 240px;
    }

    .container-offset,
    .problem-block,
    .team-content-offset,
    .packages-content {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-block-overlap {
        margin-left: 0;
    }

    .form-container-offset {
        margin-left: auto;
        margin-right: auto;
    }
}