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

:root {
    --primary-color: #1a5490;
    --secondary-color: #f57c00;
    --accent-color: #2e7d32;
    --dark-color: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --text-color: #333;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.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;
    font-size: 14px;
}

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

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

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

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

.btn-accept:hover {
    background: #1b5e20;
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.floating-nav.scrolled {
    padding: 10px 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.hero-offset {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 7%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 580px;
    padding-right: 40px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

.cta-primary:hover {
    background: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
}

.hero-visual-right {
    flex: 1;
    position: relative;
    margin-left: -50px;
    margin-top: -30px;
}

.hero-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(2deg);
}

.intro-asymmetric {
    padding: 100px 7%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background: var(--white);
}

.intro-block-narrow {
    flex: 1;
    max-width: 450px;
    padding-top: 40px;
}

.intro-block-narrow h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-block-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.intro-stats-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateY(-20px);
}

.stat-card {
    background: var(--light-gray);
    padding: 35px;
    border-left: 5px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 16px;
    color: #666;
    text-transform: lowercase;
}

.problem-section {
    padding: 80px 7%;
    background: #fafafa;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-visual {
    flex: 0.9;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateX(-30px);
}

.problem-text {
    flex: 1.1;
}

.problem-text h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.problem-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.checkmark-list {
    list-style: none;
    margin: 30px 0;
}

.checkmark-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    color: #444;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

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

.services-grid {
    padding: 100px 7%;
    background: var(--white);
}

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

.section-header-offset h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

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

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 320px;
}

.card-medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 280px;
}

.card-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 14px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

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

.select-service:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.cta-banner-sticky {
    padding: 50px 7%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3d6b 100%);
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
}

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

.btn-cta-inline:hover {
    background: #e65100;
    transform: scale(1.05);
}

.expertise-section {
    padding: 90px 7%;
    background: var(--light-gray);
}

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

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

.expertise-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.brand-tag {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.brand-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.testimonials-offset {
    padding: 100px 7%;
    background: var(--white);
}

.testimonials-offset h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.testimonial-cards {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 35px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
    position: relative;
}

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

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #777;
    font-weight: 600;
}

.form-section {
    padding: 90px 7%;
    background: linear-gradient(to right, #f5f7fa 50%, var(--white) 50%);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 10%;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.form-intro p {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 60px 7%;
    background: #fff3e0;
    text-align: center;
}

.urgency-content h3 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.urgency-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-urgent:hover {
    background: #e65100;
    transform: scale(1.05);
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 7% 30px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

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

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-intro {
    padding: 90px 7%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-visual {
    flex: 0.8;
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.values-section {
    padding: 80px 7%;
    background: var(--light-gray);
}

.values-section h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.team-section {
    padding: 90px 7%;
    background: var(--white);
}

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

.team-intro h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.team-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: var(--light-gray);
    padding: 35px;
    text-align: center;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

.feature-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-label {
    display: block;
    font-size: 15px;
    color: #666;
}

.history-timeline {
    padding: 90px 7%;
    background: var(--light-gray);
}

.history-timeline h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -56px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 3px solid var(--white);
}

.timeline-year {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.certifications-section {
    padding: 80px 7%;
    background: var(--white);
}

.certifications-section h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.certifications-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    max-width: 800px;
}

.cert-list {
    list-style: none;
    max-width: 800px;
}

.cert-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 16px;
    color: #444;
    border-bottom: 1px solid var(--border-color);
}

.cert-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
}

.cta-section-alt {
    padding: 80px 7%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1b5e20 100%);
    text-align: center;
    color: var(--white);
}

.cta-section-alt h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

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

.btn-cta-large:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.services-detail {
    padding: 40px 7%;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-detail-header {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.service-icon-large {
    font-size: 64px;
}

.service-detail-header h2 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-weight: 600;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.service-detail-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.packages-section {
    padding: 80px 7%;
    background: var(--light-gray);
}

.packages-section h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.packages-section > p {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.package-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.package-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.package-card > p {
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-card ul li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.package-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.btn-package {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.faq-section {
    padding: 80px 7%;
    background: var(--white);
}

.faq-section h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 14px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-section {
    padding: 60px 7%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1.2;
}

.contact-block {
    margin-bottom: 40px;
}

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

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

.contact-item strong {
    display: block;
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-regions {
    margin-top: 40px;
}

.contact-regions h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-regions p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.regions-list {
    list-style: none;
}

.regions-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.regions-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.contact-visual {
    flex: 0.8;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.response-times {
    padding: 70px 7%;
    background: var(--light-gray);
}

.response-times h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.response-card {
    flex: 1;
    min-width: 260px;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.response-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 600;
}

.response-time {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.response-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.location-info {
    padding: 70px 7%;
    background: var(--white);
}

.location-info h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.location-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
    max-width: 900px;
}

.emergency-contact {
    padding: 60px 7%;
    background: #fff3e0;
}

.emergency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.emergency-box h2 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.emergency-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.emergency-box a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.btn-emergency:hover {
    background: #e65100;
    transform: scale(1.05);
}

.thanks-hero {
    padding: 100px 7%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

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

.selected-service-box {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-box strong {
    display: block;
    font-size: 15px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.selected-service-box p {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

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

.steps-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 40px;
    max-width: 600px;
}

.steps-list li {
    padding: 18px 0 18px 40px;
    position: relative;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.steps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 24px;
}

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

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

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

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

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

.emergency-note {
    background: #fff3e0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.emergency-note p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.thanks-additional {
    padding: 80px 7%;
    background: var(--white);
}

.thanks-additional h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.link-card {
    flex: 1;
    min-width: 260px;
    background: var(--light-gray);
    padding: 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.link-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.link-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}

.link-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

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

.legal-page {
    padding: 40px 7% 80px;
}

.legal-page h1 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 14px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

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

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

.legal-content strong {
    color: var(--dark-color);
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 250px;
        padding: 30px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-offset {
        flex-direction: column;
        padding: 40px 5%;
        min-height: auto;
    }

    .hero-content-left {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .hero-visual-right {
        margin-left: 0;
        margin-top: 30px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .intro-stats-offset {
        transform: translateY(0);
    }

    .problem-section {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .problem-visual img {
        transform: translateX(0);
    }

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

    .testimonial-cards {
        flex-direction: column;
    }

    .testimonial:nth-child(2) {
        transform: translateY(0);
    }

    .form-container-offset {
        margin-left: 0;
        padding: 35px 25px;
    }

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

    .about-intro {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .contact-section {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 15px;
    }

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

@media (max-width: 640px) {
    .hero-content-left h1 {
        font-size: 30px;
    }

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

    .intro-block-narrow h2,
    .values-section h2,
    .team-intro h2 {
        font-size: 28px;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }

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

    .legal-page h1 {
        font-size: 32px;
    }
}