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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
}

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);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 8px;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    right: 60px;
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
    border-radius: 8px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    position: relative;
    padding-top: 120px;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    position: relative;
    z-index: 2;
    background-color: var(--bg-light);
}

.hero-text-block {
    max-width: 600px;
    margin-left: 100px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-text-block p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-light);
}

.hero-image-diagonal {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #dfe6e9;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 128, 185, 0.3);
}

.intro-offset {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    flex: 1;
    padding-right: 40px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-wide-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #ecf0f1;
}

.intro-wide-image img {
    width: 100%;
    height: 100%;
}

.services-asymmetric {
    padding: 120px 80px;
    background-color: var(--bg-light);
}

.services-header-overlap {
    margin-bottom: 60px;
    margin-left: 120px;
}

.services-header-overlap h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-header-overlap p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-large {
    flex-basis: calc(60% - 15px);
}

.service-medium {
    flex-basis: calc(50% - 15px);
}

.service-small {
    flex-basis: calc(40% - 15px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 10px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(41, 128, 185, 0.3);
}

.form-section-diagonal {
    padding: 100px 80px;
    background-color: var(--bg-white);
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin-left: auto;
    margin-right: 150px;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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(--primary-color);
}

.selected-service-display {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
}

.trust-section-overlap {
    display: flex;
    padding: 120px 80px;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.trust-points-staggered {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-point {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.trust-offset {
    margin-left: 80px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--success-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-point h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trust-point p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-image-corner {
    flex: 0.8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #95a5a6;
}

.trust-image-corner img {
    width: 100%;
    height: 100%;
}

.how-it-works-creative {
    padding: 120px 80px;
    background-color: var(--bg-light);
}

.how-it-works-creative h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.steps-diagonal {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.step-left {
    align-self: flex-start;
    width: 90%;
}

.step-right {
    align-self: flex-end;
    width: 90%;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section-asymmetric {
    padding: 120px 80px;
    background-color: var(--primary-color);
}

.cta-content-diagonal {
    max-width: 700px;
    margin-left: 120px;
    color: var(--bg-white);
}

.cta-content-diagonal h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cta-content-diagonal p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 80px 40px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-block h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--bg-light);
}

.footer-block p {
    line-height: 1.8;
    opacity: 0.85;
}

.footer-block a {
    display: block;
    color: var(--bg-white);
    opacity: 0.8;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
}

.footer-block a:hover {
    opacity: 1;
    color: var(--bg-white);
}

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

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 0.85rem;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: var(--bg-white);
    padding: 25px 40px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-header-diagonal {
    padding: 150px 80px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.header-content-offset {
    max-width: 800px;
    margin-left: 100px;
    color: var(--bg-white);
}

.header-content-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.header-content-offset p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story-asymmetric {
    display: flex;
    padding: 100px 80px;
    gap: 70px;
    align-items: center;
}

.story-text-block {
    flex: 1;
    padding-right: 40px;
}

.story-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.story-image-overlap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #7f8c8d;
}

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

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

.values-section-creative h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.value-large {
    flex-basis: calc(55% - 15px);
}

.value-medium {
    flex-basis: calc(45% - 15px);
}

.value-small {
    flex-basis: calc(45% - 15px);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section-offset {
    padding: 100px 80px;
    background-color: var(--bg-white);
}

.team-intro {
    margin-bottom: 50px;
    margin-left: 80px;
}

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.team-image-diagonal {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 50px;
    background-color: #34495e;
}

.team-image-diagonal img {
    width: 100%;
    height: 100%;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

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

.approach-section-asymmetric {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.approach-section-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.approach-blocks-staggered {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-block {
    display: flex;
    gap: 30px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    align-items: flex-start;
}

.approach-offset-right {
    align-self: flex-end;
    width: 90%;
}

.approach-number {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-block h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.cta-about-diagonal {
    padding: 100px 80px;
    background-color: var(--secondary-color);
}

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

.cta-about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cta-about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.services-detail-asymmetric {
    padding: 80px 80px;
}

.services-intro-offset {
    margin-bottom: 60px;
    margin-left: 100px;
}

.services-intro-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-featured {
    border: 3px solid var(--accent-color);
}

.service-offset {
    margin-left: 80px;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    align-self: flex-start;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin: 15px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

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

.service-detail-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 10px;
}

.comparison-section-creative {
    padding: 80px 80px;
    background-color: var(--bg-light);
}

.comparison-section-creative h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.comparison-text {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-text p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.comparison-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.comparison-block {
    flex-basis: calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.comparison-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.comparison-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-services-diagonal {
    padding: 100px 80px;
    background-color: var(--primary-color);
}

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

.cta-services-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cta-services-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-section-asymmetric {
    padding: 80px 80px;
}

.contact-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-info-block > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details-staggered {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-detail {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.contact-offset {
    margin-left: 60px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-image-diagonal {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #7f8c8d;
}

.contact-image-diagonal img {
    width: 100%;
    height: 100%;
}

.location-section-creative {
    padding: 80px 80px;
    background-color: var(--bg-light);
}

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

.location-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.location-details-offset {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-detail {
    flex: 1;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.location-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.location-detail p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.faq-section-asymmetric {
    padding: 80px 80px;
    background-color: var(--bg-white);
}

.faq-section-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.faq-blocks-staggered {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-block {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-offset {
    margin-left: 80px;
}

.faq-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-contact-diagonal {
    padding: 100px 80px;
    background-color: var(--secondary-color);
}

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

.cta-contact-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cta-contact-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-section-asymmetric {
    display: flex;
    gap: 60px;
    padding: 120px 80px;
    align-items: center;
    min-height: 80vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--success-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 30px;
}

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

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.detail-item {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.next-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

.btn-primary {
    padding: 16px 35px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 16px 35px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-image-offset {
    flex: 0.8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #95a5a6;
}

.thanks-image-offset img {
    width: 100%;
    height: 100%;
}

.thanks-info-section {
    padding: 60px 80px;
    background-color: var(--bg-light);
}

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

.info-content-asymmetric h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-content-asymmetric p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-page-content {
    padding: 120px 80px 80px;
}

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

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

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

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

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

@media (max-width: 1024px) {
    .nav-floating {
        right: 30px;
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        right: 30px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        padding: 40px;
    }

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

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

    .hero-image-diagonal {
        min-height: 400px;
        clip-path: none;
    }

    .intro-offset,
    .about-story-asymmetric,
    .trust-section-overlap,
    .contact-content-split,
    .thanks-section-asymmetric {
        flex-direction: column;
    }

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

    .service-large,
    .service-medium,
    .service-small {
        flex-basis: 100%;
    }

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

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

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

    .step-left,
    .step-right {
        width: 100%;
    }

    .trust-offset,
    .contact-offset,
    .faq-offset {
        margin-left: 0;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-block {
        flex-basis: calc(50% - 30px);
    }

    .comparison-blocks {
        flex-direction: column;
    }

    .comparison-block {
        flex-basis: 100%;
    }

    .location-details-offset {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

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

    .services-asymmetric,
    .intro-offset,
    .trust-section-overlap,
    .how-it-works-creative,
    .cta-section-asymmetric,
    .page-header-diagonal,
    .about-story-asymmetric,
    .values-section-creative,
    .team-section-offset,
    .approach-section-asymmetric,
    .cta-about-diagonal,
    .services-detail-asymmetric,
    .comparison-section-creative,
    .cta-services-diagonal,
    .contact-section-asymmetric,
    .location-section-creative,
    .faq-section-asymmetric,
    .cta-contact-diagonal,
    .thanks-section-asymmetric,
    .thanks-info-section,
    .legal-page-content,
    .footer-asymmetric {
        padding: 60px 30px;
    }

    .form-section-diagonal {
        padding: 60px 30px;
    }

    .form-container-offset {
        margin-right: 0;
    }

    .services-header-overlap,
    .services-intro-offset,
    .team-intro {
        margin-left: 0;
    }

    .cta-content-diagonal {
        margin-left: 0;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-block {
        flex-basis: 100%;
    }

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

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

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

    .nav-floating {
        top: 30px;
        right: 20px;
    }
}