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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7d;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f7d;
}

.ad-disclosure {
    margin-left: auto;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

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

.hero-text-side {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafb;
}

.hero-text-side h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image-side {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c5f7d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #234a5f;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f7d;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #2c5f7d;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2c5f7d;
    color: #ffffff;
}

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

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

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

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

.visual-block img {
    width: 100%;
    height: 100%;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f8fafb;
}

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

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

.section-header-centered p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #4a4a4a;
}

.service-price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f7d;
}

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.methodology-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.asymmetric-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.method-text {
    flex: 2;
}

.method-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7d;
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #4a4a4a;
    line-height: 1.7;
}

.method-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.method-visual img {
    width: 100%;
    height: 100%;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: #2c5f7d;
    color: #ffffff;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-container blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-container cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.contact-form-section {
    padding: 6rem 2rem;
    background-color: #f8fafb;
}

.form-wrapper-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

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

.benefit-icon {
    color: #2c5f7d;
    font-size: 1.2rem;
    font-weight: 700;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f7d;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2c5f7d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234a5f;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f0f4f7;
}

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

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.disclaimer-content p {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

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

.cookie-btn.accept {
    background-color: #2c5f7d;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #234a5f;
}

.cookie-btn.reject {
    background-color: #555;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #444;
}

.page-header {
    padding: 5rem 2rem 3rem;
    background-color: #f8fafb;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.header-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7d;
}

.service-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-includes ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: #4a4a4a;
}

.service-includes ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f7d;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background-color: #2c5f7d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #234a5f;
}

.service-detail-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
}

.pricing-note {
    padding: 3rem 2rem;
    background-color: #f8fafb;
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
}

.note-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.note-content p {
    color: #4a4a4a;
    line-height: 1.7;
}

.about-hero {
    padding: 5rem 2rem 3rem;
    background-color: #f8fafb;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.philosophy-detailed {
    padding: 5rem 2rem;
}

.content-block-wide {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.content-block-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-block-wide p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.text-column {
    flex: 1;
}

.text-column h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text-column p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.image-column {
    flex: 1;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.image-column img {
    width: 100%;
    height: 100%;
}

.team-approach {
    padding: 5rem 2rem;
    background-color: #f8fafb;
}

.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-header h2 {
    font-size: 2.5rem;
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.approach-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f7d;
}

.approach-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

.background-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.background-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #4a4a4a;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8fafb;
}

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

.values-intro h2 {
    font-size: 2.5rem;
}

.values-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c5f7d;
}

.value-item p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #2c5f7d;
    text-align: center;
    color: #ffffff;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-page-header {
    padding: 4rem 2rem;
    background-color: #f8fafb;
    text-align: center;
}

.contact-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-page-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.contact-info-section {
    padding: 5rem 2rem;
}

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

.contact-details {
    flex: 1;
}

.contact-tagline {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f7d;
}

.contact-block p {
    color: #4a4a4a;
    line-height: 1.7;
}

.note-text {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
}

.contact-approach {
    padding: 5rem 2rem;
    background-color: #f8fafb;
}

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

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

.contact-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f7d;
    min-width: 70px;
}

.step-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-text p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

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

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

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f7d;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-contact {
    padding: 4rem 2rem;
    background-color: #f8fafb;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f7d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    background-color: #f8fafb;
    padding: 2rem;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4a4a4a;
}

.next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f7d;
    font-weight: 700;
}

.thanks-note {
    background-color: #fff8e1;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-note p {
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 0.9rem 2rem;
    background-color: #2c5f7d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #234a5f;
}

.btn-secondary {
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2c5f7d;
    text-decoration: none;
    border: 2px solid #2c5f7d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c5f7d;
    color: #ffffff;
}

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

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c5f7d;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
}

.legal-container p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c5f7d;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #234a5f;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background-color: #f8fafb;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 968px) {
    .hero-split,
    .split-layout,
    .split-layout.reverse,
    .asymmetric-layout,
    .form-wrapper-split,
    .split-content,
    .contact-layout,
    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .hero-text-side h1,
    .about-intro h1,
    .contact-page-header h1 {
        font-size: 2rem;
    }

    .content-block h2,
    .method-text h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

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

@media (max-width: 600px) {
    .hero-text-side {
        padding: 3rem 1.5rem;
    }

    .hero-text-side h1 {
        font-size: 1.75rem;
    }

    .step-number,
    .step-num {
        font-size: 1.5rem;
        min-width: 40px;
    }
}