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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #28a745;
}

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

.header-asymmetric {
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-block .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-floating {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-asymmetric {
    padding: 5rem 5% 4rem;
    background-color: var(--bg-light);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text-block {
    flex: 1;
    padding-left: 3rem;
}

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

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

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

.cta-primary:hover {
    background-color: var(--secondary-color);
}

.hero-image-wrap {
    flex: 1;
    margin-right: -5%;
}

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

.intro-offset {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.intro-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 8rem;
}

.intro-text {
    font-size: 1.35rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.services-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding-left: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-offset-top {
    flex: 1 1 calc(40% - 1rem);
    margin-top: 3rem;
}

.card-small {
    flex: 1 1 calc(35% - 1rem);
    margin-left: 2rem;
}

.card-wide {
    flex: 1 1 calc(65% - 1rem);
}

.card-offset-bottom {
    flex: 1 1 calc(45% - 1rem);
    margin-top: -2rem;
}

.card-accent {
    flex: 1 1 calc(55% - 1rem);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.card-accent .card-content {
    color: white;
}

.card-accent .price {
    color: var(--accent-color);
    font-weight: 700;
}

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

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

.card-content {
    padding: 2rem;
}

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

.card-accent .card-content h3 {
    color: white;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-accent .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.card-accent .btn-select {
    background-color: white;
    color: var(--primary-color);
}

.card-accent .btn-select:hover {
    background-color: var(--bg-light);
}

.card-split {
    display: flex;
}

.card-split .card-image-wrapper {
    flex: 1;
    height: auto;
}

.card-split .card-content {
    flex: 1;
}

.cta-floating {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.cta-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    margin-left: 4rem;
}

.cta-text-block {
    color: white;
}

.cta-text-block h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-secondary {
    padding: 1rem 2rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: var(--bg-light);
}

.process-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.process-layout-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.process-image-block {
    flex: 1;
    margin-left: -5%;
}

.process-image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.process-text-block {
    flex: 1;
    padding-right: 3rem;
}

.process-text-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
}

.form-section-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.form-container-offset {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 4rem;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.trust-elements {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.trust-layout-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-item h4 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.footer-asymmetric {
    padding: 4rem 5% 2rem;
    background-color: var(--text-dark);
    color: white;
}

.footer-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

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

.disclaimer-footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-offset {
    padding: 5rem 5% 3rem;
    background-color: var(--bg-light);
}

.hero-text-irregular {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 5rem;
}

.hero-text-irregular h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-story-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.story-layout-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-offset {
    flex: 1;
    margin-right: 2rem;
}

.story-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

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

.story-text-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-text-block p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-section-offset {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.card-position-1 {
    flex: 1 1 calc(55% - 1rem);
}

.card-position-2 {
    flex: 1 1 calc(45% - 1rem);
    margin-top: 2rem;
}

.card-position-3 {
    flex: 1 1 calc(40% - 1rem);
    margin-top: -1rem;
}

.card-position-4 {
    flex: 1 1 calc(60% - 1rem);
}

.team-intro-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.team-layout-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.team-text-irregular {
    flex: 1;
    padding-right: 2rem;
}

.team-text-irregular h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.team-text-irregular p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.team-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.approach-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.approach-container-irregular {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-container-irregular h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-blocks-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-block {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.offset-right {
    margin-left: 10rem;
}

.offset-left {
    margin-right: 10rem;
}

.approach-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.technologies-asymmetric {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.tech-layout-offset {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tech-layout-offset h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.tech-tags-irregular {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tech-tag {
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-about-offset {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.cta-about-offset .cta-content-irregular {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    color: white;
}

.cta-about-offset h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-about-offset p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-hero-irregular {
    padding: 5rem 5% 3rem;
    background-color: var(--bg-light);
}

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

.services-hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.services-detail-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.service-detail-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-full-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.item-offset-1 {
    padding-left: 0;
}

.item-offset-2 {
    flex-direction: row-reverse;
    padding-right: 2rem;
}

.item-offset-3 {
    padding-left: 4rem;
}

.item-offset-4 {
    flex-direction: row-reverse;
}

.item-offset-5 {
    padding-left: 2rem;
}

.item-offset-6 {
    flex-direction: row-reverse;
    padding-right: 4rem;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

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

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.service-pricing-block {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.services-cta-asymmetric {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.services-cta-content-offset {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.services-cta-content-offset h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.contact-hero-offset {
    padding: 5rem 5% 3rem;
    background-color: var(--bg-light);
}

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

.contact-hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-main-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.contact-layout-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding-right: 2rem;
}

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

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

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

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

.contact-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.contact-form-section-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.form-wrapper-offset {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro-block {
    margin-bottom: 3rem;
    text-align: center;
}

.form-intro-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.contact-form-layout {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.map-info-section {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

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

.map-info-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-info-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.thanks-section-asymmetric {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content-offset h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-confirmation-block {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}

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

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

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

.next-steps-section {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

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

.next-steps-content h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.legal-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.legal-article {
    margin-bottom: 3rem;
}

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

.legal-article h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.legal-article p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-article ul,
.legal-article ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-article li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-article a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-article a:hover {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .hero-content-offset,
    .story-layout-irregular,
    .team-layout-offset,
    .process-layout-offset,
    .contact-layout-irregular {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
        margin: 0;
    }

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

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

    .service-full-item {
        flex-direction: column;
        padding: 0;
    }

    .item-offset-2,
    .item-offset-4,
    .item-offset-6 {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }

    .cta-content-irregular {
        flex-direction: column;
        text-align: center;
        margin-left: 0;
    }

    .approach-blocks-offset .offset-right,
    .approach-blocks-offset .offset-left {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .nav-floating {
        gap: 1rem;
    }

    .nav-floating a {
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .intro-narrow,
    .hero-text-irregular {
        padding-left: 0;
    }

    .form-container-offset {
        padding-left: 0;
    }
}