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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #718096;
    padding: 4px 10px;
    background: #edf2f7;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #48bb78;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #38a169;
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #4a5568;
}

.cookie-reject:hover {
    background: #2d3748;
}

.hero-offset {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 100px 5% 60px;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a202c;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1a202c;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #2d3748;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2d3748;
    transition: all 0.3s;
}

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

.hero-visual-offset {
    flex: 1;
    margin-top: -80px;
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

.hero-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-asymmetric {
    display: flex;
    padding: 80px 5%;
    gap: 80px;
    background: #f7fafc;
}

.content-block-left {
    flex: 1.3;
    max-width: 680px;
}

.content-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a202c;
}

.content-block-left p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.insight-box-right {
    flex: 1;
    background: #2d3748;
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    align-self: flex-start;
    margin-top: 60px;
}

.insight-box-right h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.problem-amplification {
    padding: 100px 5%;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #1a202c;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.insight-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d3748;
    font-weight: bold;
}

.split-image {
    flex: 1;
    background: #edf2f7;
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.framework-reveal {
    padding: 100px 5%;
    background: #ffffff;
}

.framework-intro {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.framework-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.framework-intro p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

.service-offset-1 {
    margin-left: 0;
}

.service-offset-2 {
    margin-left: 80px;
    flex-direction: row-reverse;
}

.service-offset-3 {
    margin-left: 40px;
}

.service-offset-4 {
    margin-left: 120px;
    flex-direction: row-reverse;
}

.service-offset-5 {
    margin-left: 20px;
}

.service-visual {
    flex: 1;
    min-width: 300px;
    background: #edf2f7;
}

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

.service-content {
    flex: 1.3;
    padding: 40px;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
}

.select-service {
    padding: 12px 28px;
    background: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1a202c;
}

.testimonial-scattered {
    padding: 100px 5%;
    background: #edf2f7;
    display: flex;
    gap: 80px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
}

.testimonial-left {
    margin-top: 0;
}

.testimonial-right {
    margin-top: 60px;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
    font-style: normal;
}

.trust-building {
    padding: 100px 5%;
    background: #f7fafc;
}

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

.trust-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a202c;
}

.trust-content-center p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.citation {
    color: #2d3748;
    font-weight: 600;
    text-decoration: none;
}

.citation:hover {
    text-decoration: underline;
}

.cta-offset {
    position: relative;
    min-height: 500px;
    margin: 80px 5%;
    border-radius: 12px;
    overflow: hidden;
}

.cta-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2d3748;
}

.cta-visual-bg img {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.cta-content-overlay {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    color: #ffffff;
}

.cta-content-overlay h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content-overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.form-section {
    padding: 100px 5%;
    background: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-intro {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f7fafc;
    cursor: not-allowed;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #1a202c;
}

.references-section {
    padding: 60px 5%;
    background: #f7fafc;
}

.references-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a202c;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #4a5568;
}

.references-list a {
    color: #2d3748;
    word-break: break-all;
}

.footer-asymmetric {
    background: #1a202c;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-block p {
    color: #a0aec0;
    font-size: 0.95rem;
}

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

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #2d3748;
    border-bottom: 1px solid #2d3748;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

.about-hero-offset {
    padding: 140px 5% 80px;
    background: #f7fafc;
}

.about-intro-block {
    max-width: 700px;
    margin-left: 80px;
}

.about-intro-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a202c;
}

.about-intro-block p {
    font-size: 1.25rem;
    color: #4a5568;
}

.about-story-asymmetric {
    display: flex;
    gap: 60px;
    padding: 100px 5%;
    align-items: center;
}

.story-visual {
    flex: 1;
    background: #edf2f7;
    border-radius: 12px;
    overflow: hidden;
    margin-top: -40px;
}

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

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #1a202c;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.approach-scattered {
    padding: 100px 5%;
    background: #f7fafc;
    display: flex;
    gap: 80px;
}

.approach-block {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
}

.approach-left {
    margin-top: 0;
}

.approach-right {
    margin-top: 60px;
}

.approach-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.approach-block p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.team-section {
    padding: 100px 5%;
    background: #ffffff;
}

.team-intro-center {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro-center h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.team-intro-center p {
    font-size: 1.1rem;
    color: #4a5568;
}

.team-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.team-member:nth-child(2) {
    flex-direction: row-reverse;
    margin-left: 80px;
}

.team-member:nth-child(3) {
    margin-left: 40px;
}

.member-visual {
    flex: 1;
    max-width: 300px;
    background: #edf2f7;
    border-radius: 12px;
    overflow: hidden;
}

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

.member-info {
    flex: 1.5;
    padding: 20px 0;
}

.member-info h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.member-info p {
    font-size: 1.05rem;
    color: #4a5568;
}

.values-offset {
    padding: 100px 5%;
    background: #2d3748;
    color: #ffffff;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.value-item:nth-child(2) {
    margin-left: 60px;
}

.value-item:nth-child(3) {
    margin-left: 30px;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1.05rem;
    color: #e2e8f0;
}

.cta-about {
    padding: 100px 5%;
    background: #f7fafc;
}

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

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-about-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 35px;
}

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

.services-hero {
    padding: 140px 5% 80px;
    background: #f7fafc;
}

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

.services-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-full-list {
    padding: 80px 5%;
}

.service-detailed {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
    margin-left: 60px;
}

.service-visual-large {
    flex: 1;
    background: #edf2f7;
    border-radius: 12px;
    overflow: hidden;
    align-self: stretch;
}

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

.service-detailed-content {
    flex: 1.2;
}

.service-detailed-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detailed-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-detailed-content h4 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-detailed-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detailed-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #4a5568;
}

.service-detailed-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d3748;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
}

.services-cta {
    padding: 100px 5%;
    background: #f7fafc;
}

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

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-cta-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 35px;
}

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

.contact-hero {
    padding: 140px 5% 80px;
    background: #f7fafc;
}

.contact-hero-content {
    max-width: 600px;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
}

.contact-info-asymmetric {
    display: flex;
    gap: 80px;
    padding: 100px 5%;
}

.contact-block {
    flex: 1;
}

.contact-left {
    margin-top: 0;
}

.contact-right {
    margin-top: 40px;
}

.contact-block h2,
.contact-block h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a202c;
}

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

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
}

.contact-email {
    font-weight: 600;
    color: #2d3748;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-visual-section {
    margin: 80px 5%;
    border-radius: 12px;
    overflow: hidden;
    background: #edf2f7;
}

.contact-visual-section img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-faq {
    padding: 100px 5%;
    background: #f7fafc;
}

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

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a202c;
}

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

.faq-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-cta {
    padding: 100px 5%;
    background: #ffffff;
}

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

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-cta-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 35px;
}

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

.thanks-hero {
    padding: 140px 5% 80px;
    background: #f7fafc;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-content > p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-details {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 8px;
}

.thanks-details strong {
    color: #1a202c;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a202c;
}

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

.thanks-next-steps li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 12px;
}

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

.thanks-resources {
    padding: 100px 5%;
    background: #ffffff;
}

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

.resources-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a202c;
    text-align: center;
}

.resources-content > p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 50px;
    text-align: center;
}

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

.resource-card {
    flex: 1;
    padding: 40px;
    background: #f7fafc;
    border-radius: 12px;
}

.resource-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.resource-card p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.resource-link {
    display: inline-block;
    padding: 10px 20px;
    background: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.resource-link:hover {
    background: #1a202c;
}

.legal-content {
    padding: 140px 5% 80px;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.legal-update {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a202c;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-container p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 10px;
}

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

.legal-container a:hover {
    color: #1a202c;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .split-content,
    .testimonial-scattered,
    .approach-scattered,
    .team-member,
    .about-story-asymmetric,
    .contact-info-asymmetric,
    .services-full-list .service-detailed,
    .resources-grid {
        flex-direction: column;
    }

    .service-offset-2,
    .service-offset-4,
    .team-member:nth-child(2),
    .service-layout-2 {
        flex-direction: column;
        margin-left: 0;
    }

    .hero-text-block h1,
    .about-intro-block h1,
    .services-hero-content h1,
    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .about-intro-block {
        margin-left: 0;
    }

    .hero-visual-offset {
        margin-top: 20px;
    }

    .insight-box-right,
    .testimonial-right,
    .approach-right {
        margin-top: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cta-about-actions,
    .services-cta-actions,
    .contact-cta-actions,
    .thanks-actions {
        flex-direction: column;
    }
}