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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #c0a062;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

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

.btn-accept:hover {
    background: #a88d52;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
    border-left: 3px solid transparent;
}

.mobile-menu a:hover {
    border-left-color: var(--accent-color);
    background: var(--bg-light);
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    overflow: hidden;
    background: var(--primary-color);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.6));
    display: flex;
    align-items: center;
    padding: 40px;
}

.hero-content-offset {
    max-width: 700px;
    margin-left: 10%;
    color: white;
}

.hero-content-offset h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-content-offset p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
}

.cta-hero:hover {
    background: #a88d52;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 160, 98, 0.3);
}

.story-intro {
    padding: 120px 40px;
    background: var(--bg-white);
}

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

.lead-text {
    font-size: 28px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.narrow-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-layout-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
    align-items: center;
}

.split-image {
    flex: 1;
    min-width: 0;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.split-content {
    flex: 1;
    min-width: 0;
}

.split-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.insight-list {
    list-style: none;
    margin-top: 30px;
}

.insight-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.insight-block {
    padding: 120px 40px;
    background: var(--bg-white);
}

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

.insight-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.insight-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.quote-block {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.quote-block blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-block cite {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

.visual-card-section {
    padding: 100px 40px;
    background: var(--primary-color);
}

.cards-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.card-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
}

.card-visual img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.card-visual:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.card-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card-overlay p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.trust-section {
    padding: 120px 40px;
    background: var(--bg-white);
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.trust-section .narrow-text {
    margin-bottom: 80px;
}

.process-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

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

.testimonials-inline {
    padding: 100px 40px;
    background: var(--bg-light);
}

.testimonials-inline h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonial-item {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

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

.services-reveal {
    padding: 120px 40px;
    background: var(--bg-white);
}

.services-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.service-card.featured {
    background: var(--primary-color);
    color: white;
}

.service-card.featured h3,
.service-card.featured p {
    color: white;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

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

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 80px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card.featured .service-price {
    color: var(--accent-color);
}

.btn-select-service {
    width: 100%;
    padding: 14px 20px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    font-size: 15px;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    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(--accent-color);
}

.btn-submit {
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: var(--bg-white);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 4px;
}

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    font-size: 14px;
    opacity: 0.8;
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.about-hero,
.services-hero,
.contact-hero {
    margin-top: 80px;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.about-content-wrapper,
.services-intro,
.contact-intro {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-hero .lead,
.services-intro p,
.contact-intro p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.about-story {
    padding: 100px 40px;
    background: var(--bg-white);
}

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.approach-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.cta-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 10px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    margin: 0 10px;
}

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

.services-detailed {
    padding: 60px 40px;
    background: var(--bg-white);
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-info {
    flex: 1;
    position: relative;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.badge-highlight {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.service-info > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.service-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-info ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.service-pricing .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-pricing button {
    flex: 1;
}

.contact-content {
    padding: 80px 40px;
    background: var(--bg-white);
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.info-note {
    margin-top: 40px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 4px;
}

.info-note p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.additional-info {
    padding: 80px 40px;
    background: var(--bg-light);
}

.additional-info h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
}

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

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

.thanks-hero {
    margin-top: 80px;
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-content .lead {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-details p {
    margin: 0;
    font-size: 18px;
}

.next-steps {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.thanks-info {
    padding: 80px 40px;
    background: var(--bg-white);
}

.thanks-info h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-info p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 20px;
}

.legal-page {
    margin-top: 80px;
    padding: 80px 40px;
    background: var(--bg-white);
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.legal-container h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: var(--secondary-color);
}

.legal-container p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

.legal-container strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .hero-content-offset {
        margin-left: 0;
    }

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

    .hero-content-offset p {
        font-size: 18px;
    }

    .lead-text {
        font-size: 22px;
    }

    .split-content h2 {
        font-size: 32px;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .form-container {
        padding: 40px 30px;
    }

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

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