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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-color: #1a202c;
    --gray-color: #4a5568;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --text-color: #2d3748;
    --bg-light: #f7fafc;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

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

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
}

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

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    min-height: 100vh;
}

.hero-image-container {
    width: 100%;
    padding: 40px;
}

.hero-image-container img {
    width: 100%;
    height: auto;
}

.cta-primary {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: var(--white);
}

.intro-statement {
    padding: 100px 20px;
    background: var(--bg-light);
}

.intro-statement h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-statement p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--gray-color);
}

.problem-amplify {
    padding: 100px 20px;
}

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

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 34px;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.split-visual {
    flex: 1;
}

.visual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.grid-item {
    flex: 1;
    min-width: 150px;
    height: 200px;
    border-radius: 12px;
}

.gi-1 {
    background: var(--gradient-primary);
}

.gi-2 {
    background: var(--gradient-accent);
}

.gi-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.insight-block {
    padding: 100px 20px;
    background: var(--dark-color);
    color: var(--white);
}

.insight-header {
    margin-bottom: 30px;
}

.insight-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.insight-block h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.insight-text {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
}

.services-showcase {
    padding: 100px 20px;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--dark-color);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.service-price {
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

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

.btn-select-service {
    width: 100%;
    padding: 14px 25px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

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

.trust-builder h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--dark-color);
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 220px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.testimonials-inline {
    padding: 100px 20px;
}

.testimonial-item {
    margin-bottom: 40px;
}

.testimonial-item blockquote {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-item p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-color);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-item cite {
    display: block;
    font-size: 16px;
    color: var(--gray-color);
    font-style: normal;
    font-weight: 600;
}

.cta-section-alt {
    padding: 100px 20px;
    background: var(--gradient-primary);
}

.cta-content-box {
    text-align: center;
    color: var(--white);
}

.cta-content-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-box p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.why-different {
    padding: 100px 20px;
}

.benefit-list {
    list-style: none;
    margin-top: 25px;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: var(--gray-color);
}

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

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

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

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

.form-intro p {
    font-size: 18px;
    color: var(--gray-color);
}

.main-form {
    background: var(--white);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.final-cta {
    padding: 100px 20px;
}

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

.final-cta p {
    font-size: 19px;
    color: var(--gray-color);
    margin-bottom: 35px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

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

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

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 25px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
}

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

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

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

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

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

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

.page-hero-simple {
    padding: 150px 20px 80px;
    background: var(--bg-light);
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-color);
}

.about-story {
    padding: 100px 20px;
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--dark-color);
}

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

.team-section {
    padding: 100px 20px;
}

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

.team-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-color);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.approach-section > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.approach-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1;
}

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

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

.service-includes {
    margin-bottom: 30px;
}

.service-includes h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark-color);
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--gray-color);
}

.service-includes li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-pricing-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.price-main {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

.service-detail-visual {
    flex: 1;
}

.service-detail-visual img {
    width: 100%;
    border-radius: 12px;
}

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

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

.services-cta p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 35px;
}

.contact-main {
    padding: 80px 20px;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-side {
    flex: 1.5;
}

.contact-form-side h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark-color);
}

.contact-form-side > p {
    font-size: 17px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

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

.contact-info-side h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--dark-color);
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark-color);
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-color);
}

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-color);
    margin: 0;
}

.thanks-hero {
    padding: 150px 20px 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    text-align: center;
    margin-bottom: 30px;
}

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

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

.selected-service-info {
    margin: 25px 0;
}

.selected-service-text {
    font-size: 18px;
    color: var(--dark-color);
}

.selected-service-text strong {
    color: var(--primary-color);
}

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

.btn-primary {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

.thanks-next-steps {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

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

.step-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.step-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark-color);
}

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

.legal-page {
    padding: 150px 20px 80px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--dark-color);
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark-color);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--dark-color);
}

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

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    font-style: italic;
    color: var(--gray-color);
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-lead {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .main-form {
        padding: 30px 20px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

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

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