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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --success-color: #2ecc71;
    --border-color: #ddd;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
}

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);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

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

.nav-menu li a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

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

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

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    position: relative;
    min-height: 400px;
}

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

.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-light,
.btn-submit {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-primary-large {
    background: var(--secondary-color);
    color: white;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-light:hover {
    background: var(--bg-light);
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    width: 100%;
    font-size: 1.05rem;
}

.btn-submit:hover {
    background: #c0392b;
}

.intro-split,
.why-us-split,
.process-split,
.approach-split {
    display: flex;
    flex-direction: column;
}

.split-content-left,
.split-content-right {
    flex: 1;
}

.split-content-left img,
.split-content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box,
.content-box-dark {
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-box h2,
.content-box-dark h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-box p,
.content-box-dark p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-box-dark {
    background: var(--primary-color);
    color: white;
}

.benefits-list {
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header-centered p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 2rem;
}

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

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

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

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

.testimonials {
    padding: 5rem 2rem;
    background: white;
}

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

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

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

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

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

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

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

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

.sticky-btn {
    display: block;
    text-align: center;
    background: var(--secondary-color);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.sticky-btn:hover {
    background: #c0392b;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.page-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 50vh;
}

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

.story-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-left-narrow h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.split-right-wide p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.values-list {
    margin-top: 2rem;
}

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

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

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

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

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

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

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

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

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

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

.hero-content-centered p {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

.service-detail-split {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto 5rem;
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

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

.service-visual {
    flex: 1;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
    display: flex;
    align-items: center;
}

.service-content {
    padding: 3rem 2rem;
}

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

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

.service-includes {
    margin-bottom: 2rem;
}

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

.service-includes ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.service-includes ul li {
    margin-bottom: 0.6rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.price-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

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

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

.pricing-info-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

.cta-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
}

.cta-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

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

.contact-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

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

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

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

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

.contact-info-side {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.contact-info-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

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

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

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

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

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

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

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

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

.contact-map-side {
    min-height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
}

.contact-faq {
    padding: 5rem 2rem;
    background: white;
}

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

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

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

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

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

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

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

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
}

.step-item .step-number {
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

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

.thanks-contact a {
    color: var(--accent-color);
    font-weight: 600;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.update-date {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

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

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

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

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

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

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

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

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero-split,
    .page-hero-split {
        flex-direction: row;
    }

    .intro-split,
    .why-us-split,
    .process-split,
    .approach-split,
    .values-split {
        flex-direction: row;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 300px;
    }

    .testimonials-container {
        flex-direction: row;
    }

    .form-container-split {
        flex-direction: row;
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

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

    .split-left-narrow {
        flex: 0 0 30%;
    }

    .split-right-wide {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 280px;
    }

    .stats-container {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

    .pricing-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .cta-content-split {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cta-left {
        flex: 1;
    }

    .cta-right {
        flex: 0 0 auto;
    }

    .contact-main-split {
        flex-direction: row;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .steps-grid {
        flex-direction: row;
    }

    .thanks-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

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

    .section-header-centered h2,
    .testimonials h2,
    .pricing-info-content h2,
    .faq-content h2 {
        font-size: 2rem;
    }

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

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

    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}