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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --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);
}

.ad-disclosure {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: var(--bg-white);
    position: relative;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

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

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

.hero-asymmetric {
    display: flex;
    align-items: center;
    padding: 80px 8% 60px;
    gap: 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 600px;
}

.hero-content-offset {
    flex: 1;
    padding-left: 5%;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    position: relative;
    transform: translateY(-30px);
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52,152,219,0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 16px 40px;
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

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

.intro-overlap {
    display: flex;
    align-items: flex-start;
    padding: 90px 8%;
    gap: 70px;
    position: relative;
}

.intro-card-left {
    flex: 1.2;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(-40px);
}

.intro-card-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.intro-stats-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 6px;
    transform: translateX(20px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.services-preview-asymmetric {
    padding: 100px 8%;
    background-color: var(--bg-light);
}

.services-header-offset {
    margin-bottom: 60px;
    padding-left: 12%;
}

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

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-large {
    flex: 1 1 calc(60% - 20px);
    transform: translateY(-20px);
}

.service-card-small {
    flex: 1 1 calc(40% - 20px);
    transform: translateY(40px);
}

.service-card-medium {
    flex: 1 1 calc(50% - 20px);
    transform: translateY(10px);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

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

.approach-split {
    display: flex;
    align-items: center;
    padding: 90px 8%;
    gap: 80px;
}

.approach-image {
    flex: 0.9;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateX(-30px);
}

.approach-content {
    flex: 1.1;
}

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.benefits-stacked {
    padding: 90px 8%;
    background-color: var(--bg-light);
}

.benefits-stacked h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefit-block {
    background-color: var(--bg-white);
    padding: 50px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.benefit-offset-right {
    margin-left: 15%;
    max-width: 700px;
}

.benefit-offset-left {
    margin-right: 15%;
    margin-left: auto;
    max-width: 700px;
}

.benefit-centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-block h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.benefit-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-floating {
    padding: 100px 8%;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    background: linear-gradient(120deg, #3498db 0%, #2c3e50 100%);
}

.cta-content-irregular {
    flex: 1;
    color: white;
    padding: 40px;
    transform: translateX(60px);
}

.cta-content-irregular h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content-irregular p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-visual-accent {
    flex: 0.5;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transform: rotate(-5deg) translateY(-20px);
}

.form-section-asymmetric {
    padding: 90px 8%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 0.8;
    padding-top: 30px;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    flex: 1.2;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52,152,219,0.3);
}

.trust-indicators {
    padding: 80px 8%;
    background-color: var(--bg-white);
}

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

.trust-content h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.additional-services-offset {
    padding: 90px 8%;
    background-color: var(--bg-light);
}

.additional-services-offset h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    padding-left: 8%;
}

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

.additional-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.additional-item:hover {
    transform: translateY(-5px);
}

.additional-item:nth-child(1) {
    transform: translateY(-15px);
}

.additional-item:nth-child(2) {
    transform: translateY(15px);
}

.additional-item:nth-child(3) {
    transform: translateY(-8px);
}

.additional-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.additional-item p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-small {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: white;
    padding: 70px 8% 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1 1 250px;
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-block ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-block ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.7;
    font-size: 14px;
}

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

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

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

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

.cookie-content a {
    color: var(--secondary-color);
}

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

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

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

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

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

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

.page-header-offset {
    padding: 120px 8% 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-header-offset p {
    font-size: 20px;
    opacity: 0.95;
}

.about-intro-asymmetric {
    padding: 90px 8%;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text-block {
    flex: 1.2;
}

.about-text-block h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.about-image-offset {
    flex: 0.8;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(30px) translateX(20px);
}

.philosophy-section {
    padding: 90px 8%;
    background-color: var(--bg-light);
}

.philosophy-content-irregular {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(-60px);
}

.philosophy-content-irregular h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.values-stacked {
    padding: 90px 8%;
}

.values-stacked h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.value-item {
    background-color: var(--bg-light);
    padding: 50px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.value-offset-left {
    margin-right: 20%;
    max-width: 700px;
}

.value-offset-right {
    margin-left: 20%;
    margin-right: auto;
    max-width: 700px;
}

.value-centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-item h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

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

.expertise-split {
    padding: 90px 8%;
    display: flex;
    gap: 70px;
    align-items: center;
    background-color: var(--bg-light);
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.expertise-image {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-20px);
}

.approach-details {
    padding: 90px 8%;
}

.approach-details h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.approach-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-large {
    flex: 1 1 calc(50% - 15px);
}

.step-small {
    flex: 1 1 calc(50% - 15px);
}

.step-medium {
    flex: 1 1 calc(50% - 15px);
}

.step-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.why-choose-asymmetric {
    padding: 90px 8%;
    background-color: var(--bg-light);
}

.why-choose-asymmetric h2 {
    font-size: 44px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

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

.why-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.why-item:nth-child(1) {
    transform: translateY(-20px);
}

.why-item:nth-child(2) {
    transform: translateY(20px);
}

.why-item:nth-child(3) {
    transform: translateY(10px);
}

.why-item:nth-child(4) {
    transform: translateY(-10px);
}

.why-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-about {
    padding: 90px 8%;
    text-align: center;
    background: linear-gradient(120deg, #3498db 0%, #2c3e50 100%);
    color: white;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.services-intro-split {
    padding: 90px 8%;
    display: flex;
    gap: 70px;
    align-items: center;
}

.services-intro-text {
    flex: 1.2;
}

.services-intro-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.services-intro-image {
    flex: 0.8;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-30px);
}

.services-detail-asymmetric {
    padding: 90px 8%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-large-offset {
    max-width: 900px;
    margin-left: 8%;
}

.service-medium-right {
    max-width: 850px;
    margin-left: auto;
    margin-right: 8%;
}

.service-large-centered {
    max-width: 950px;
    margin: 0 auto;
}

.service-small-left {
    max-width: 750px;
    margin-right: auto;
    margin-left: 5%;
}

.service-medium-offset {
    max-width: 850px;
    margin-left: 12%;
}

.service-small-right {
    max-width: 750px;
    margin-left: auto;
    margin-right: 5%;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.service-header h3 {
    font-size: 32px;
    color: var(--primary-color);
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}

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

.service-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

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

.cta-service {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.cta-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.benefits-services {
    padding: 90px 8%;
    background-color: var(--bg-light);
}

.benefits-services h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.benefit-service {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.benefit-service:nth-child(1) {
    transform: translateY(-15px);
}

.benefit-service:nth-child(2) {
    transform: translateY(15px);
}

.benefit-service:nth-child(3) {
    transform: translateY(10px);
}

.benefit-service:nth-child(4) {
    transform: translateY(-10px);
}

.benefit-service h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.process-overview {
    padding: 90px 8%;
}

.process-overview h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps-asymmetric {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-8px);
}

.process-step:nth-child(1) {
    transform: translateY(-10px);
}

.process-step:nth-child(2) {
    transform: translateY(10px);
}

.process-step:nth-child(3) {
    transform: translateY(-5px);
}

.process-step:nth-child(4) {
    transform: translateY(15px);
}

.process-step:nth-child(5) {
    transform: translateY(5px);
}

.step-icon {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.form-section-services {
    padding: 90px 8%;
    background-color: var(--bg-light);
}

.form-intro-services {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.form-intro-services p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-main-asymmetric {
    padding: 90px 8%;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

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

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

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

.contact-details {
    margin: 40px 0;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.contact-note {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.contact-visual {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(40px);
}

.contact-form-section {
    padding: 90px 8%;
    background-color: var(--bg-light);
}

.form-header-contact {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.form-header-contact h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-header-contact p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-form-extended {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group-full {
    margin-bottom: 25px;
}

.form-group-full label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.form-group-full textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
}

.form-group-full textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-privacy {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--secondary-color);
}

.btn-submit-contact {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-contact:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52,152,219,0.3);
}

.contact-additional {
    padding: 90px 8%;
}

.contact-additional h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-container-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.faq-item:nth-child(odd) {
    margin-left: 40px;
}

.faq-item:nth-child(even) {
    margin-right: 40px;
}

.faq-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.thanks-container {
    padding: 120px 8%;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-next-steps ol {
    margin-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 8% 60px;
}

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

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

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

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

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

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

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-back {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .hero-asymmetric,
    .intro-overlap,
    .approach-split,
    .form-section-asymmetric,
    .about-intro-asymmetric,
    .expertise-split,
    .services-intro-split,
    .contact-main-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .intro-card-left,
    .philosophy-content-irregular {
        transform: none;
    }

    .services-grid-irregular,
    .additional-grid,
    .why-grid-irregular,
    .benefits-grid-irregular {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-small,
    .service-card-medium {
        flex: 1 1 100%;
        transform: none;
    }

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

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

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

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-content-offset h1 {
        font-size: 38px;
    }

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

    h2 {
        font-size: 32px;
    }

    .process-steps-asymmetric {
        flex-direction: column;
        align-items: center;
    }

    .approach-steps-irregular {
        flex-direction: column;
    }

    .step-large,
    .step-small,
    .step-medium {
        flex: 1 1 100%;
    }
}