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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-left: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5aa0;
}

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

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

.hero-text-block {
    flex: 1;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

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

.hero-text-block p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #2c5aa0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1e4070;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateX(30px) translateY(-20px);
    background-color: #e8f0f8;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-asymmetric {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.intro-col-narrow {
    flex: 0 0 35%;
}

.intro-col-narrow h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-col-wide {
    flex: 1;
    padding-left: 2rem;
}

.intro-col-wide p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.services-grid-offset {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

.services-title-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 700;
    padding-left: 8%;
}

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

.service-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card.card-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 85%;
}

.service-card.card-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 85%;
    flex-direction: row-reverse;
}

.service-card.card-center {
    margin-left: 7%;
    margin-right: 7%;
}

.service-image-wrapper {
    flex: 0 0 45%;
    background-color: #e8f0f8;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1e4070;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 90, 160, 0.3);
}

.form-section-offset {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f8 100%);
}

.form-wrapper-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-50px);
}

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

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

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

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

.form-field label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-field input,
.form-field select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-submit {
    padding: 1.2rem 2.5rem;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    background-color: #1e4070;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

.why-us-offset {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

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

.why-content-asymmetric img {
    flex: 0 0 45%;
    width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8f0f8;
    object-fit: cover;
}

.why-text-block {
    flex: 1;
}

.why-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.why-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f0f4f8;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #2c5aa0;
    border-radius: 6px;
}

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

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #ffffff;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2c5aa0;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1e4070;
}

.cookie-btn.reject {
    background-color: #444;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #666;
}

.about-hero-offset {
    margin-top: 80px;
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.about-text-primary {
    flex: 1;
    padding-right: 2rem;
}

.about-text-primary h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.about-text-primary p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.about-image-block {
    flex: 0 0 45%;
    background-color: #e8f0f8;
}

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.experience-section-offset {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.experience-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.experience-col-left {
    flex: 1;
}

.experience-col-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.experience-col-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #444;
}

.experience-col-right {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

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

.methodology-section {
    padding: 6rem 2rem;
    background-color: #f0f4f8;
}

.methodology-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.methodology-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.method-item {
    flex: 0 0 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.method-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
    font-weight: 700;
}

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

.values-asymmetric {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
    font-weight: 700;
}

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

.cta-secondary-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4070 100%);
}

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

.cta-secondary-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-secondary-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e8f0f8;
    line-height: 1.7;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #ffffff;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.services-header-asymmetric {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f8 100%);
}

.services-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 8%;
}

.services-header-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.services-header-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    max-width: 700px;
}

.services-detailed {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.service-detail-card.offset-left {
    margin-right: 10%;
}

.service-detail-card.offset-right {
    margin-left: 10%;
    flex-direction: row-reverse;
}

.service-detail-card.offset-center {
    margin-left: 5%;
    margin-right: 5%;
}

.service-detail-image {
    flex: 0 0 40%;
    background-color: #e8f0f8;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #333;
}

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

.service-price-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.services-cta-asymmetric {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.services-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.cta-btn-inline {
    display: inline-block;
    padding: 1.1rem 2.3rem;
    background-color: #2c5aa0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-btn-inline:hover {
    background-color: #1e4070;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

.contact-header-offset {
    margin-top: 80px;
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 5%;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.contact-details-asymmetric {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.contact-info-block {
    flex: 0 0 40%;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5aa0;
    font-weight: 700;
}

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

.contact-visual-block {
    flex: 1;
    position: relative;
}

.contact-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    background-color: #e8f0f8;
    object-fit: cover;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

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

.contact-additional {
    padding: 5rem 2rem;
    background-color: #f0f4f8;
}

.additional-info-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 10px;
}

.additional-info-asymmetric h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.additional-info-asymmetric p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #444;
}

.thanks-section {
    margin-top: 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f8 100%);
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.thanks-info {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #333;
}

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

.btn-back-home,
.btn-view-services {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home {
    background-color: #2c5aa0;
    color: #ffffff;
}

.btn-back-home:hover {
    background-color: #1e4070;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

.btn-view-services {
    background-color: #f0f4f8;
    color: #2c5aa0;
}

.btn-view-services:hover {
    background-color: #e0e8f0;
}

.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 700;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #444;
}

.legal-content a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #1e4070;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-offset-content,
    .about-content-asymmetric,
    .why-content-asymmetric,
    .contact-layout,
    .experience-wrapper {
        flex-direction: column;
    }

    .intro-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-col-narrow {
        flex: 1;
    }

    .service-card.card-left,
    .service-card.card-right,
    .service-card.card-center {
        flex-direction: column;
        max-width: 100%;
        margin: 0;
    }

    .service-image-wrapper {
        flex: 0 0 250px;
    }

    .values-grid,
    .methodology-blocks {
        flex-direction: column;
    }

    .method-item {
        flex: 1;
    }

    .service-detail-card.offset-left,
    .service-detail-card.offset-right,
    .service-detail-card.offset-center {
        flex-direction: column;
        margin: 0 0 3rem;
    }

    .service-detail-image {
        flex: 0 0 300px;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-ad-label {
        margin-left: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

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

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}