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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --highlight: #e94560;
    --text: #2d3436;
    --text-light: #636e72;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --border: #e1e8ed;
    --shadow: rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
}

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

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

ul {
    list-style-position: inside;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-minimal {
    position: sticky;
    top: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

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

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

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

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

.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 20px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--highlight);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--highlight);
    font-weight: 600;
    border: 2px solid var(--highlight);
    border-radius: 6px;
    font-size: 1rem;
    margin-top: 2rem;
}

.cta-secondary:hover {
    background: var(--highlight);
    color: white;
}

.intro-space {
    padding: 8rem 20px;
    text-align: center;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto;
}

.image-statement {
    display: flex;
    flex-direction: column;
    padding: 6rem 20px;
    gap: 3rem;
    background: var(--bg-alt);
}

.statement-visual img {
    width: 100%;
    border-radius: 8px;
}

.statement-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.statement-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.problem-reveal {
    padding: 8rem 20px;
}

.problem-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--primary);
    font-weight: 700;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.approach-minimal {
    padding: 8rem 20px;
    background: var(--bg-alt);
}

.approach-minimal h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
    font-weight: 700;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.step-block {
    text-align: center;
}

.step-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--highlight);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

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

.trust-indicators {
    padding: 6rem 20px;
    background: var(--primary);
    color: white;
}

.indicator-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.indicator h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.indicator p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-minimal {
    padding: 8rem 20px;
}

.testimonial-minimal blockquote {
    border-left: 4px solid var(--highlight);
    padding-left: 2rem;
}

.testimonial-minimal p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-minimal cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.services-section {
    padding: 8rem 20px;
    background: var(--bg-alt);
}

.services-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-card.featured {
    border: 2px solid var(--highlight);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--highlight);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--accent);
}

.service-card.selected {
    border: 2px solid var(--highlight);
    background: #fff5f7;
}

.form-section {
    padding: 8rem 20px;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary);
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

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

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

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

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

.form-group input[readonly] {
    background: var(--bg-alt);
    cursor: not-allowed;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group a {
    color: var(--highlight);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--highlight);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: var(--border);
    cursor: not-allowed;
}

.final-cta {
    padding: 8rem 20px;
    background: var(--primary);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.footer {
    background: var(--secondary);
    color: white;
    padding: 4rem 20px 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

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

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

.footer-col a {
    display: block;
    margin-bottom: 0.7rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--highlight);
}

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

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--highlight);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px var(--shadow);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

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

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

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

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

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

.btn-reject {
    background: var(--bg-alt);
    color: var(--text);
}

.btn-reject:hover {
    background: var(--border);
}

.page-header {
    padding: 6rem 20px 4rem;
    text-align: center;
    background: var(--bg-alt);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 800;
}

.header-intro {
    font-size: 1.3rem;
    color: var(--text-light);
}

.story-section,
.team-intro,
.mission-statement {
    padding: 5rem 20px;
}

.story-section h2,
.team-intro h2,
.mission-statement h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.story-section p,
.team-intro p,
.mission-statement p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.values-section,
.expertise-areas {
    padding: 6rem 20px;
    background: var(--bg-alt);
}

.values-section h2,
.expertise-areas h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary);
    font-weight: 700;
}

.values-grid,
.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card,
.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px var(--shadow);
}

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

.value-card p,
.expertise-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about,
.cta-services {
    padding: 6rem 20px;
    text-align: center;
    background: var(--primary);
    color: white;
}

.cta-about h2,
.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-about p,
.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 6rem 20px;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 0.5rem;
}

.service-meta {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.badge-inline {
    display: inline-block;
    background: var(--highlight);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.service-description h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.service-description ul {
    margin-bottom: 2rem;
}

.service-description li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

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

.btn-secondary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.service-faq {
    padding: 6rem 20px;
    background: var(--bg-alt);
}

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

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

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

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

.contact-info {
    padding: 5rem 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.contact-block a {
    color: var(--highlight);
    text-decoration: underline;
}

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

.contact-cta {
    padding: 5rem 20px;
    background: var(--bg-alt);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.location-note {
    padding: 5rem 20px;
}

.location-note h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.location-note p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.thanks-hero {
    padding: 8rem 20px;
    text-align: center;
    background: var(--bg-alt);
}

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

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

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

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

.service-confirmation {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px var(--shadow);
    margin-top: 2rem;
}

.next-steps {
    padding: 6rem 20px;
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary);
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--highlight);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--primary);
}

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

.thanks-resources {
    padding: 5rem 20px;
    background: var(--bg-alt);
}

.thanks-resources h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.thanks-resources p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.resource-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.resource-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-navigation {
    padding: 5rem 20px;
}

.thanks-navigation h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.nav-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px var(--shadow);
    transition: all 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px var(--shadow);
}

.nav-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--primary);
}

.nav-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-header {
    padding: 5rem 20px 3rem;
    background: var(--bg-alt);
    text-align: center;
}

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

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

.legal-content {
    padding: 5rem 20px;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

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

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--highlight);
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--primary);
}

.cookie-table td {
    color: var(--text-light);
}

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

    .nav-toggle {
        display: none;
    }

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

    .image-statement {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }

    .statement-visual,
    .statement-text {
        flex: 1;
    }

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

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

    .approach-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-block {
        flex: 1 1 calc(50% - 2rem);
    }

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

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

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

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

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

    .values-grid,
    .expertise-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card,
    .expertise-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-detail {
        flex-direction: row;
        gap: 4rem;
    }

    .service-info {
        flex: 0 0 300px;
    }

    .service-description {
        flex: 1;
    }

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

    .contact-block {
        flex: 1;
    }

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

    .nav-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        flex-wrap: nowrap;
    }

    .problem-item {
        flex: 1;
    }

    .approach-steps {
        flex-wrap: nowrap;
    }

    .step-block {
        flex: 1;
    }

    .services-cards {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .values-grid,
    .expertise-list {
        flex-wrap: nowrap;
    }

    .value-card,
    .expertise-item {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .sticky-cta {
        left: 20px;
        right: 20px;
    }

    .sticky-cta a {
        width: 100%;
        text-align: center;
    }
}