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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #22c55e;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

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

.container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 0 40px;
}

.main-header {
    background-color: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content.asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section.offset-left {
    margin-right: auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav.floating-right {
    margin-left: auto;
}

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

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-block.elevated {
    flex: 0 0 45%;
    padding: 40px;
    background-color: var(--bg-white);
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(30px);
    z-index: 2;
    position: relative;
}

.display-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-primary.irregular {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--highlight-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transform: skewX(-3deg);
    transition: all 0.3s ease;
}

.cta-primary.irregular:hover {
    background-color: #d63850;
    transform: skewX(-3deg) translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.hero-visual-block.diagonal {
    flex: 1;
    position: relative;
    transform: rotate(-2deg);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.12);
}

.hero-visual-block.diagonal img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro-overlap {
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.intro-grid.scattered {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.intro-card {
    flex: 1;
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.intro-card.card-2.shifted {
    margin-top: 40px;
}

.intro-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.services-irregular {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header.offset-header {
    max-width: 800px;
    margin-bottom: 70px;
    margin-left: 60px;
}

.section-title.large-spacing {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-layout.scattered-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.service-block.block-large {
    flex: 0 0 calc(50% - 15px);
}

.service-block.block-medium {
    flex: 0 0 calc(33.333% - 20px);
}

.service-block.block-medium.offset-top {
    margin-top: 50px;
}

.service-block.block-medium.offset-bottom {
    margin-bottom: 50px;
}

.service-block.block-medium.offset-left {
    margin-left: 40px;
}

.service-block.block-small {
    flex: 0 0 calc(33.333% - 20px);
}

.service-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-block:hover .service-visual img {
    transform: scale(1.08);
}

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

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 13px;
    color: var(--text-light);
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--highlight-color);
}

.service-select {
    padding: 14px 30px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 52, 96, 0.3);
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(120deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
}

.contact-form-section.diagonal-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: var(--bg-light);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.container-narrow.offset-right {
    max-width: 700px;
    margin-left: auto;
    margin-right: 100px;
}

.form-wrapper.elevated-card {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.1);
}

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

.btn-submit:hover {
    background-color: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.trust-section.irregular-layout {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.trust-content.asymmetric-split {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-text.offset-element {
    flex: 0 0 45%;
    margin-left: 60px;
}

.trust-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

.trust-visual.diagonal-overlap {
    flex: 1;
    transform: rotate(1deg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.15);
}

.trust-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 70px 0 30px;
}

.footer-container.asymmetric-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column.col-brand {
    flex: 1.2;
}

.footer-column.col-disclaimer {
    flex: 1.5;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--highlight-color);
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

.btn-accept:hover {
    background-color: #d63850;
}

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

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

.page-hero.compact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
}

.page-title.offset-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

.services-detail-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

.service-detail-card.large-card {
    flex: 0 0 calc(50% - 20px);
}

.service-detail-card.medium-card {
    flex: 0 0 calc(50% - 20px);
}

.service-detail-card.medium-card.offset {
    margin-top: 60px;
}

.service-detail-card.small-card {
    flex: 0 0 calc(33.333% - 27px);
}

.service-detail-card.small-card.offset-bottom {
    margin-bottom: 40px;
}

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

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

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

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

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

.card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-lead {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

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

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

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

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: auto;
}

.price-from {
    font-size: 13px;
    color: var(--text-light);
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--highlight-color);
}

.cta-section.diagonal-section {
    padding: 100px 0;
    background: linear-gradient(120deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.cta-box.elevated {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--highlight-color);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.about-hero.asymmetric-hero {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.hero-split.irregular-split {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content.offset-content {
    flex: 0 0 50%;
    padding-left: 40px;
}

.large-title {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

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

.hero-image.diagonal-image {
    flex: 1;
    transform: rotate(-1deg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 20px -20px 50px rgba(0, 0, 0, 0.12);
}

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

.story-section.scattered-layout {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.story-block {
    max-width: 800px;
    margin-bottom: 60px;
}

.story-block.block-1 {
    margin-left: 100px;
}

.story-block.block-2.offset-right {
    margin-left: auto;
    margin-right: 100px;
}

.story-block.block-3 {
    margin-left: 150px;
}

.story-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.expertise-section.irregular-bg {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e3e8ef 100%);
}

.section-heading.centered {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 70px;
}

.expertise-grid.scattered-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.expertise-card {
    flex: 0 0 calc(50% - 17.5px);
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.expertise-card.card-offset-1 {
    margin-top: 30px;
}

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

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

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

.expertise-card:hover .card-icon img {
    transform: scale(1.08);
}

.expertise-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 25px 30px 15px;
}

.expertise-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    padding: 0 30px 30px;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.section-title-large {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.values-list.asymmetric-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    max-width: 700px;
}

.value-item.item-2.offset,
.value-item.item-4.offset {
    margin-left: auto;
}

.value-item h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

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

.cta-content-box {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-content-box h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.btn-contact-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--highlight-color);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-contact-large:hover {
    background-color: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.contact-hero.minimal-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e3e8ef 100%);
    text-align: center;
}

.hero-title-large {
    font-size: 54px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 19px;
    color: var(--text-light);
}

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

.contact-layout.asymmetric-contact {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-info-block.elevated-block {
    flex: 0 0 45%;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.info-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

.note-text {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-visual-block.diagonal-visual {
    flex: 1;
    transform: rotate(1deg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-visual-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.additional-info-section.offset-bg {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.info-grid.irregular {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.info-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card.card-secondary.offset {
    margin-top: 30px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.last-update {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

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

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

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

.legal-section a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: #d63850;
}

.data-retention-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.data-retention-table th,
.cookies-table th {
    background-color: var(--bg-light);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.data-retention-table td,
.cookies-table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e3e8ef 100%);
    padding: 40px 20px;
}

.thanks-container {
    max-width: 800px;
    width: 100%;
}

.thanks-content.centered-content {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-service-info {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 16px;
    color: var(--text-color);
    padding: 15px 25px;
    background-color: var(--bg-light);
    border-radius: 6px;
    display: inline-block;
}

.selected-service strong {
    color: var(--highlight-color);
}

.thanks-next-steps {
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    padding: 12px 0 12px 40px;
    position: relative;
    counter-increment: step-counter;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 28px;
    height: 28px;
    background-color: var(--highlight-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--highlight-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

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

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

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-email {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-offset-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block.elevated {
        flex: 1;
        transform: translateX(0);
    }

    .hero-visual-block.diagonal {
        width: 100%;
        transform: rotate(0);
    }

    .intro-grid.scattered {
        flex-direction: column;
    }

    .intro-card.card-2.shifted {
        margin-top: 0;
    }

    .services-layout.scattered-cards {
        flex-direction: column;
    }

    .service-block {
        flex: 1 !important;
        margin: 0 !important;
    }

    .trust-content.asymmetric-split {
        flex-direction: column;
        gap: 40px;
    }

    .trust-text.offset-element {
        margin-left: 0;
    }

    .hero-split.irregular-split {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content.offset-content {
        padding-left: 0;
    }

    .story-block.block-1,
    .story-block.block-2.offset-right,
    .story-block.block-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .expertise-grid.scattered-cards {
        flex-direction: column;
    }

    .expertise-card {
        flex: 1 !important;
    }

    .value-item.item-2.offset,
    .value-item.item-4.offset {
        margin-left: 0;
    }

    .contact-layout.asymmetric-contact {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .service-detail-card {
        flex: 1 !important;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

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

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

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title.large-spacing {
        font-size: 32px;
    }

    .page-title.offset-title {
        font-size: 36px;
    }

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

    .hero-title-large {
        font-size: 40px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .thanks-content.centered-content {
        padding: 40px 30px;
    }

    .container-narrow.offset-right {
        margin-right: 20px;
    }

    .form-wrapper.elevated-card {
        padding: 35px 25px;
    }

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

    .info-card.card-secondary.offset {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .display-title {
        font-size: 28px;
    }

    .section-title.large-spacing {
        font-size: 26px;
    }

    .form-title {
        font-size: 28px;
    }

    .thanks-title {
        font-size: 32px;
    }
}