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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2d7aa7;
    --accent-color: #e8a838;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

ul {
    list-style-position: inside;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-right {
    display: flex;
    gap: 2rem;
}

.header-right a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

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

.hero-content {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background: var(--bg-light);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.insight-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.insight-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-visual {
    flex: 0 0 45%;
}

.insight-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.story-block {
    padding: 5rem 8%;
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.story-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--bg-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    transform: translateX(8px);
}

.services-split {
    padding: 6rem 5%;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-intro h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.service-visual {
    flex: 0 0 40%;
}

.service-visual img {
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

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

.service-details p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.trust-indicators {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.trust-item h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

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

.testimonials-split {
    padding: 5rem 8%;
}

.testimonial-block {
    padding: 3rem;
    background: var(--bg-white);
    border-left: 5px solid var(--accent-color);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-block.alt {
    background: var(--bg-light);
    border-left-color: var(--secondary-color);
}

.testimonial-content p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.form-section-split {
    display: flex;
    padding: 6rem 5%;
    gap: 5rem;
    background: var(--bg-light);
}

.form-intro {
    flex: 1;
    padding-right: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.form-container {
    flex: 1;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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(--secondary-color);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d29625;
    box-shadow: var(--shadow-hover);
}

.urgency-block {
    padding: 4rem 8%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
}

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

.urgency-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.cta-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background: #d29625;
    transform: scale(1.05);
}

.footer-split {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d29625;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
    gap: 4rem;
    padding: 4rem 5%;
}

.page-hero-content {
    flex: 1;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.page-hero-visual {
    flex: 1;
}

.page-hero-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-story {
    padding: 5rem 8%;
    background: var(--bg-light);
}

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

.story-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-wrapper p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-split {
    padding: 5rem 5%;
}

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

.value-item.reverse {
    flex-direction: row-reverse;
}

.value-visual {
    flex: 0 0 45%;
}

.value-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-content {
    flex: 1;
}

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

.value-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 0 0 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-member h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.cta-about {
    padding: 4rem 8%;
    background: var(--secondary-color);
    text-align: center;
}

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

.cta-content h3 {
    font-size: 2.2rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--bg-white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #d29625;
    transform: scale(1.05);
}

.services-detail-split {
    padding: 5rem 5%;
}

.service-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.service-detail-item.highlight {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 3px solid var(--accent-color);
}

.service-detail-visual {
    flex: 0 0 40%;
}

.service-detail-visual img {
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
}

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

.service-pricing-box {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-pricing-box.featured {
    background: linear-gradient(135deg, var(--accent-color), #d29625);
    color: var(--bg-white);
}

.price-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-pricing-box.featured .price-value {
    color: var(--bg-white);
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.services-faq {
    padding: 5rem 8%;
    background: var(--bg-light);
}

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

.faq-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.services-cta {
    padding: 4rem 8%;
    background: var(--primary-color);
    text-align: center;
}

.services-cta .cta-content h3 {
    font-size: 2.2rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.services-cta .cta-content p {
    font-size: 1.1rem;
    color: var(--bg-white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-info-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 8%;
    background: var(--bg-light);
}

.contact-info-block {
    flex: 1;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-method h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-method p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-method a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-note {
    padding: 3rem 8%;
    background: var(--accent-color);
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

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

.note-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-map {
    padding: 5rem 8%;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container img {
    width: 100%;
}

.contact-alternative {
    padding: 4rem 8%;
    background: var(--bg-light);
    text-align: center;
}

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

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

.alternative-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 6rem 8%;
    background: var(--bg-light);
    text-align: center;
}

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

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

.thanks-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.service-confirm {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

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

.thanks-next-steps {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: var(--shadow);
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-next-steps ul {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.thanks-additional {
    padding: 5rem 8%;
}

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

.additional-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.additional-grid {
    display: flex;
    gap: 3rem;
}

.additional-item {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

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

.additional-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.additional-item a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.additional-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page {
    padding: 5rem 8%;
    background: var(--bg-light);
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
}

.legal-container p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-position: outside;
}

.legal-container li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 3rem 5%;
    }

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

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

    .insight-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .insight-visual {
        flex: 1;
    }

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

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

    .form-section-split {
        flex-direction: column;
    }

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .page-hero-split {
        flex-direction: column;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .header-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .insight-text h2 {
        font-size: 1.6rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .service-item {
        padding: 2rem;
    }

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

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

    .legal-container {
        padding: 2rem;
    }
}
