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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #5b4a9e;
    --accent-color: #3b82f6;
    --text-dark: #1a1a2e;
    --text-light: #4a4a6a;
    --bg-light: #f8f9fc;
    --bg-white: #ffffff;
    --border-color: #e1e4ea;
    --success-color: #4CAF50;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

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

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

.btn-reject:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-2px);
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

.hero-asymmetric {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8ecf7 100%);
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    padding-left: 40px;
}

.hero-text-block h1 {
    font-size: 54px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 800;
}

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

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

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 90, 160, 0.3);
}

.hero-image-offset {
    flex: 1;
    min-width: 350px;
    position: relative;
    margin-top: -40px;
}

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

.intro-overlapping {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.intro-card-left {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    margin-right: -60px;
    z-index: 2;
}

.intro-card-left h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.intro-visual-right {
    flex: 1;
    min-width: 350px;
    position: relative;
    background: #e8f2fe;
    border-radius: 16px;
    overflow: hidden;
}

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

.stat-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-width: 280px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.approach-diagonal {
    padding: 120px 20px;
    background: var(--text-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.approach-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-white);
    transform: skewY(-2deg);
}

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

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 36px;
    border-radius: 12px;
    max-width: 360px;
    backdrop-filter: blur(10px);
}

.approach-item.offset-1 {
    margin-top: 0;
}

.approach-item.offset-2 {
    margin-top: 40px;
}

.approach-item.offset-3 {
    margin-top: 80px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: white;
}

.approach-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.services-staggered {
    padding: 120px 20px;
    background: var(--bg-light);
}

.services-header-offset {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.services-header-offset h2 {
    font-size: 46px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

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

.service-card.card-wide {
    flex: 1 1 calc(65% - 15px);
    min-width: 350px;
}

.service-card.card-tall {
    flex: 1 1 calc(35% - 15px);
    min-width: 300px;
}

.service-card.card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
}

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

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

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

.service-info h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.service-price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.btn-select-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.form-section-offset {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.selected-service-display {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-service-display.has-service {
    background: #e8f5e9;
    border: 2px solid var(--success-color);
}

.selected-service-display span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-form {
    transform: rotate(1deg);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 90, 160, 0.3);
}

.trust-diagonal {
    padding: 100px 20px;
    background: var(--bg-white);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 36px;
    border-radius: 16px;
    max-width: 360px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card.t-offset-1 {
    margin-top: 0;
}

.testimonial-card.t-offset-2 {
    margin-top: 40px;
}

.testimonial-card.t-offset-3 {
    margin-top: 80px;
}

.testimonial-card p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 20px;
}

.footer-block h3 {
    font-size: 24px;
}

.footer-block h4 {
    font-size: 18px;
}

.footer-block p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-block a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

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

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

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

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

.page-hero-content h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.story-block {
    flex: 1;
    min-width: 320px;
}

.story-block img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.story-text h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.values-staggered {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.values-staggered h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.value-item.v-offset-1 {
    margin-top: 0;
}

.value-item.v-offset-2 {
    margin-top: 40px;
}

.value-item.v-offset-3 {
    margin-top: 80px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.team-diagonal {
    padding: 100px 20px;
    background: white;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.team-image-offset {
    max-width: 1200px;
    margin: 0 auto;
    transform: rotate(-1deg);
}

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

.cta-about-offset {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.services-detail-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.service-detail-card.offset-style-1 {
    margin-left: 0;
    margin-right: 40px;
}

.service-detail-card.offset-style-2 {
    margin-left: 40px;
    margin-right: 0;
}

.service-detail-visual {
    flex: 1;
    min-width: 320px;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

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

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

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

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

.contact-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-info-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
    min-width: 300px;
}

.contact-block h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

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

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

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

.contact-image-diagonal {
    flex: 1;
    min-width: 350px;
    transform: rotate(2deg);
}

.contact-image-diagonal img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.contact-note-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.note-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

.thanks-section {
    padding: 160px 20px 80px;
    background: var(--bg-light);
    min-height: 80vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content-asymmetric h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-details {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.next-steps {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.next-steps h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.btn-secondary {
    padding: 14px 32px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

.legal-content h1 {
    font-size: 44px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.legal-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table th,
.gdpr-table td,
.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.gdpr-table td,
.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-floating {
        top: 10px;
        width: calc(100% - 20px);
        padding: 12px 20px;
        border-radius: 30px;
    }

    .nav-links {
        gap: 16px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

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

    .intro-card-left {
        margin-right: 0;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .service-card.card-wide,
    .service-card.card-tall,
    .service-card.card-medium {
        flex: 1 1 100%;
    }

    .form-container-asymmetric {
        padding: 40px 30px;
        transform: rotate(0);
    }

    .contact-form {
        transform: rotate(0);
    }

    .approach-item.offset-1,
    .approach-item.offset-2,
    .approach-item.offset-3 {
        margin-top: 0;
    }

    .testimonial-card.t-offset-1,
    .testimonial-card.t-offset-2,
    .testimonial-card.t-offset-3 {
        margin-top: 0;
    }

    .value-item.v-offset-1,
    .value-item.v-offset-2,
    .value-item.v-offset-3 {
        margin-top: 0;
    }

    .service-detail-card {
        padding: 30px;
    }

    .service-detail-card.offset-style-1,
    .service-detail-card.offset-style-2 {
        margin-left: 0;
        margin-right: 0;
    }

    .team-image-offset {
        transform: rotate(0);
    }

    .contact-image-diagonal {
        transform: rotate(0);
    }
}