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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-hover: #c7354f;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

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

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-right {
    overflow: hidden;
    background-color: var(--secondary-color);
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

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

.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 3rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-white);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.stat-label {
    font-size: 0.95rem;
    max-width: 250px;
}

.content-split {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.content-split.reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    overflow: hidden;
    height: 100%;
}

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

.split-content {
    padding: 4rem 3rem;
}

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

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

.link-arrow {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    display: inline-block;
}

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

.case-study {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.case-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.case-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.case-body {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.case-left,
.case-right {
    flex: 1;
}

.case-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.case-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-item .time {
    font-weight: 700;
    color: var(--accent-color);
    min-width: 80px;
}

.timeline-item .event {
    color: var(--text-light);
}

.impact-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.impact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.impact-box ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.impact-box ul li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.impact-box ul li:last-child {
    border-bottom: none;
}

.impact-note {
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

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

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--accent-color);
    background-color: var(--bg-light);
}

.service-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.service-features {
    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-weight: 700;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-select:hover {
    background-color: var(--accent-color);
}

.testimonial-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.testimonial-content,
.testimonial-image {
    flex: 1;
}

.testimonial-content {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-content footer {
    margin-top: 2rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--accent-color);
}

.testimonial-image {
    overflow: hidden;
}

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

.process-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

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

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

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: var(--accent-hover);
}

.urgency-bar {
    background-color: var(--warning-color);
    padding: 2rem;
}

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

.urgency-icon {
    font-size: 2rem;
}

.urgency-content p {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.btn-urgent {
    padding: 1rem 2rem;
    background-color: var(--text-dark);
    color: var(--text-white);
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-urgent:hover {
    background-color: var(--accent-color);
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.page-hero {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-info,
.service-visual {
    flex: 1;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.price-large span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

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

.service-info h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

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

.detailed-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

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

.service-visual {
    overflow: hidden;
    border-radius: 8px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.comparison-table {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.table-scroll {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    background-color: var(--bg-white);
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

table thead {
    background-color: var(--primary-color);
    color: var(--text-white);
}

table th,
table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    font-weight: 600;
}

table tbody tr:hover {
    background-color: var(--bg-light);
}

.cta-services {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.story-section {
    padding: 5rem 2rem;
}

.story-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content,
.story-image {
    flex: 1;
}

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

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

.story-image {
    overflow: hidden;
    border-radius: 8px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

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

.team-intro {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.team-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

.team-stats {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

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

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.expertise-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.methodology-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.method-content {
    max-width: 1000px;
    margin: 0 auto;
}

.method-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.method-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.rapid-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rapid-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.rapid-letter {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.rapid-desc h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

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

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-point {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.timeline-point .year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 100px;
}

.timeline-point p {
    color: var(--text-dark);
    line-height: 1.6;
}

.certifications {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

.cert-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.cert-item p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
    color: var(--text-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-side,
.contact-form-side {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

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

.contact-item {
    margin-bottom: 2rem;
}

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

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

.contact-item a {
    color: var(--accent-color);
    transition: 0.3s;
}

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

.note-small {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.emergency-block {
    background-color: var(--warning-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.emergency-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.emergency-block p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.emergency-block p:last-child {
    margin-bottom: 0;
}

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

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

.contact-form-side h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

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

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-note {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

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

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

.selected-service {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.selected-service p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-additional {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.urgent-note {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.urgent-highlight {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.while-waiting {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

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

.waiting-cards {
    display: flex;
    gap: 2rem;
}

.waiting-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

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

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

.legal-page {
    padding: 5rem 2rem;
}

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

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

.update-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    list-style-type: disc;
}

.legal-content ol {
    list-style-type: decimal;
}

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

.legal-content a:hover {
    color: var(--accent-hover);
}

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

.cookies-table {
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .content-split,
    .content-split.reverse {
        flex-direction: column;
    }

    .case-body {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .process-steps {
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .story-split {
        flex-direction: column;
        gap: 2rem;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .expertise-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-split {
        flex-direction: column;
        gap: 3rem;
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: 0.3s;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-left {
        padding: 3rem 1.5rem;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

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

    .stats-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .split-content {
        padding: 3rem 1.5rem;
    }

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

    .case-header h2 {
        font-size: 2rem;
    }

    .services-intro h2,
    .process-section h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .step {
        flex: 1 1 100%;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .urgency-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .expertise-item {
        flex: 1 1 100%;
    }

    .cert-item,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .team-stats {
        flex-direction: column;
    }
}
