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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #e94560;
    --accent-color: #f39c12;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 1rem;
}

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #d68910;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 900px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hero-asymmetric {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-offset-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    margin-left: -5%;
}

.hero-image-container img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-overlap {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: -8%;
    margin-top: 3rem;
    z-index: 10;
}

.hero-text-overlap h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #d13b52;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.intro-staggered {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text-narrow {
    max-width: 700px;
    margin: 0 0 3rem 10%;
}

.intro-text-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.intro-stats-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-left: 5%;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.services-preview {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 3rem 15%;
}

.section-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.services-asymmetric-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    transition: all 0.3s ease;
}

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

.service-large {
    flex: 2;
    min-width: 400px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-large img {
    height: 350px;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--secondary-color);
}

.trust-block-diagonal {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.trust-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    transform: skewX(-5deg);
    overflow: hidden;
    margin-right: -5%;
}

.trust-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(5deg) scale(1.2);
}

.trust-content-overlap {
    max-width: 600px;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
    margin-left: 10%;
}

.trust-content-overlap h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.trust-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.cta-secondary:hover {
    background: #0f0f1a;
    transform: translateY(-2px);
}

.process-creative {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.process-steps-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.process-step:nth-child(even) {
    margin-top: 3rem;
}

.step-number {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.testimonials-irregular {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    margin-left: 5%;
}

.testimonials-stacked {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
}

.testimonial-offset {
    margin-left: auto;
    margin-right: 5%;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.values-split {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.values-image {
    flex: 1;
    min-width: 300px;
}

.values-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.values-content {
    flex: 1;
    min-width: 300px;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.values-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-immersive {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.85);
}

.cta-background-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem;
}

.cta-content-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
}

.cta-large:hover {
    background: #d68910;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.5);
}

.form-section-creative {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.form-intro-block {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.form-intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro-block p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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(--secondary-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.btn-submit:hover {
    background: #d13b52;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.faq-minimal {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-minimal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.footer-split {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: white;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d13b52;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.5);
}

.page-hero-offset {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f0f1a 100%);
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.service-pricing-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

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

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-service {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #0f0f1a;
    transform: translateY(-2px);
}

.pricing-info-block {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.pricing-info-block h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.pricing-factors {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.factor-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.factor-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.factor-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-bottom-services {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-bottom-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-bottom-services p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-story {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1.5;
    min-width: 300px;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-values-split {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.values-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-highlight {
    background: var(--primary-color);
    color: white;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-highlight h3 {
    color: var(--accent-color);
}

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

.value-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.about-team {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-intro {
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.team-image-wide {
    margin-bottom: 2rem;
}

.team-image-wide img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.team-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.about-numbers {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

.about-numbers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.numbers-offset-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.number-block {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.number-big {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.number-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.about-approach {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.approach-text {
    flex: 1.5;
    min-width: 300px;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-certifications {
    padding: 5rem 2rem;
    background: var(--bg-light);
    max-width: 1200px;
    margin: 0 auto;
}

.about-certifications h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cert-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cert-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cert-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-main-split {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

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

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

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

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

.contact-detail a {
    color: var(--secondary-color);
}

.contact-detail a:hover {
    text-decoration: underline;
}

.detail-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.9);
    color: white;
    padding: 1.5rem;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
}

.contact-faq {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-contact-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-service-area {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-service-area h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.service-area-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.regions-list {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.regions-list h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.regions-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.regions-list li {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 6px;
    color: var(--text-dark);
}

.service-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-cta {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-main {
    padding: 10rem 2rem 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

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

.btn-primary:hover {
    background: #d13b52;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #0f0f1a;
    transform: translateY(-2px);
}

.thanks-additional {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.thanks-additional h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.additional-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.additional-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.additional-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.additional-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.additional-card a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 10rem 2rem 5rem;
    background: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.legal-section p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

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

.legal-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.legal-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.legal-back a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        padding: 1rem 1.5rem;
        width: 95%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 1rem;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .hero-text-overlap h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-text-overlap {
        margin-left: 0;
        margin-top: 2rem;
    }

    .hero-image-container {
        margin-left: 0;
    }

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

    .intro-text-narrow {
        margin-left: 0;
    }

    .intro-stats-offset {
        margin-left: 0;
    }

    .trust-image-bg {
        display: none;
    }

    .trust-content-overlap {
        margin-left: 0;
        max-width: 100%;
    }

    .process-step:nth-child(even) {
        margin-top: 0;
    }

    .testimonial-offset {
        margin-left: 0;
        margin-right: 0;
    }

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

    .service-reverse {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .section-title-center {
        font-size: 2rem;
    }

    .cta-content-center h2 {
        font-size: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}