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

:root {
    --primary-color: #1a5490;
    --secondary-color: #e67e22;
    --dark-color: #2c3e50;
    --light-bg: #f8f9fa;
    --gray-text: #555;
    --border-color: #ddd;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-split {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

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

.nav-right a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #d35400;
    color: #fff;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #123d6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.3);
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

.split-section .split-image,
.split-section .split-text {
    flex: 1;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

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

.split-text p {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 15px;
    line-height: 1.8;
}

.split-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.link-arrow:after {
    content: ' →';
    margin-left: 5px;
}

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

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--gray-text);
}

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

.stats-row {
    background: var(--primary-color);
    padding: 50px 20px;
    margin: 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    color: #fff;
}

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

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

.trust-block {
    background: var(--light-bg);
    padding: 60px 20px;
    text-align: center;
}

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

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

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

.process-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

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

.process-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.process-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.process-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
}

.service-selection {
    padding: 80px 20px;
    background: var(--light-bg);
}

.service-selection {
    max-width: 1400px;
    margin: 0 auto;
}

.service-selection h2 {
    font-size: 38px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--gray-text);
    font-size: 17px;
}

.service-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card.selected {
    border-color: var(--secondary-color);
    background: #fffaf5;
}

.service-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #123d6b;
}

.service-card.selected .btn-select {
    background: var(--secondary-color);
}

.contact-form {
    max-width: 700px;
    margin: 50px auto 0;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

#selected-service-display {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 25px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 6px;
}

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

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

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

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

.cta-content h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

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

.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #333;
}

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

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

.btn-cookie-accept {
    background: var(--success-color);
    color: #fff;
}

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

.btn-cookie-reject {
    background: #95a5a6;
    color: #fff;
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.values-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
}

.team-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

.team-intro {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 50px;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.team-stat {
    text-align: center;
}

.stat-big {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-stat p {
    font-size: 16px;
    color: var(--gray-text);
}

.cta-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cta-box h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 30px;
}

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.service-detail-text,
.service-detail-image {
    flex: 1;
}

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

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

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--gray-text);
    font-size: 16px;
}

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

.service-price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.process-detail {
    background: var(--light-bg);
    padding: 80px 20px;
}

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

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.process-step h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

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

.contact-info-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-style: italic;
    color: var(--gray-text);
    font-size: 14px;
    margin-top: 10px;
}

.map-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.map-note {
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
}

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

.method-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.method-text {
    flex: 1;
}

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

.method-text p {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 15px;
    line-height: 1.7;
}

.method-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.faq-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

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

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

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.selected-service-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    font-size: 17px;
    color: var(--dark-color);
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.next-step p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
}

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

.thanks-contact {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.legal-page {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-intro {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-update {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: #999;
    font-size: 14px;
}

@media (max-width: 968px) {
    .nav-right {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-right.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content,
    .split-section,
    .split-section.reverse,
    .service-detail-content,
    .service-detail-card.reverse .service-detail-content,
    .method-split {
        flex-direction: column;
    }

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

    .split-text h2,
    .page-hero-content h1 {
        font-size: 32px;
    }

    .stats-row,
    .team-stats {
        gap: 40px;
    }

    .process-grid,
    .service-cards,
    .values-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .split-text h2 {
        font-size: 26px;
    }

    .service-selection h2,
    .process-section h2,
    .values-section h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
