/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style-position: inside;
}

/* NAVIGATION - MINIMAL PREMIUM */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* HERO - MINIMAL PREMIUM */
.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 5% 5rem;
    text-align: center;
}

.hero-content-wide {
    max-width: 900px;
    margin-bottom: 4rem;
}

.hero-title-xl {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.hero-subtitle-sparse {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 3rem;
}

.hero-visual {
    width: 100%;
    max-width: 1200px;
}

.hero-visual img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* CTA BUTTONS */
.cta-hero-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2c2c2c;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.2s, background 0.2s;
}

.cta-hero-large:hover {
    transform: translateY(-2px);
    background: #1a1a1a;
}

/* INTRO STATEMENT */
.intro-statement {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.statement-block {
    max-width: 800px;
    margin: 0 auto;
}

.text-large-centered {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    color: #333;
}

/* PHILOSOPHY SPLIT */
.philosophy-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.phil-image {
    flex: 1;
    min-width: 300px;
}

.phil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phil-text {
    flex: 1;
    min-width: 300px;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-heading-bold {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.body-relaxed {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.cta-inline-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 500;
    transition: transform 0.2s;
}

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

/* APPROACH CARDS */
.approach-cards {
    padding: 8rem 5%;
    background: #fff;
}

.section-heading-centered {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}

.cards-container-three {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card-minimal {
    flex: 1;
    min-width: 280px;
    padding: 3rem 2rem;
}

.card-number {
    font-size: 3rem;
    font-weight: 200;
    color: #ccc;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* TESTIMONIAL */
.testimonial-block {
    padding: 8rem 5%;
    background: #f5f5f5;
}

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

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #888;
}

/* SERVICES PREVIEW */
.services-preview {
    padding: 8rem 5%;
    background: #fff;
}

.services-grid-two {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.service-card-large {
    flex: 1;
    min-width: 280px;
    padding: 3rem;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.service-card-large:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.cta-service {
    padding: 0.9rem 2rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.cta-service:hover {
    background: #1a1a1a;
}

.services-link-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-text-link {
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 500;
}

/* WHY SECTION */
.why-section {
    padding: 8rem 5%;
    background: #f9f9f9;
}

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

/* FORM SECTION */
.form-section {
    padding: 8rem 5%;
    background: #fff;
}

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

.form-heading {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
}

.form-subtext {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

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

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

.cta-submit-large {
    padding: 1.2rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.cta-submit-large:hover {
    background: #1a1a1a;
}

/* FINAL CTA */
.final-cta-section {
    padding: 8rem 5%;
    background: #2c2c2c;
    color: #fff;
    text-align: center;
}

.cta-final-heading {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-final-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #2c2c2c;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.2s;
}

.cta-final-button:hover {
    transform: translateY(-2px);
}

/* FOOTER */
.footer-minimal {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 5% 2rem;
}

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

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #888;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: #888;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #666;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 200px;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-accept {
    background: #4CAF50;
    color: #fff;
}

.cookie-reject {
    background: #777;
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.85;
}

/* STICKY CTA BAR */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1rem 5%;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

.sticky-cta-bar.show {
    display: flex;
}

.sticky-cta-text {
    font-size: 1rem;
}

.sticky-cta-button {
    padding: 0.8rem 1.8rem;
    background: #fff;
    color: #2c2c2c;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: transform 0.2s;
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
}

/* PAGE HERO SIMPLE */
.page-hero-simple {
    padding: 8rem 5% 5rem;
    text-align: center;
    background: #f9f9f9;
}

.page-title-xl {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.page-subtitle-large {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
}

/* STORY SECTION */
.story-section {
    padding: 6rem 5%;
}

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

.story-image-full {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.story-heading {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* VALUES SECTION */
.values-section {
    padding: 6rem 5%;
    background: #f9f9f9;
}

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

.value-block {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.value-block:last-child {
    border-bottom: none;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

/* TEAM SECTION */
.team-section {
    padding: 6rem 5%;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* MISSION STATEMENT */
.mission-statement {
    padding: 8rem 5%;
    background: #2c2c2c;
    color: #fff;
    text-align: center;
}

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

.mission-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.mission-text-large {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
}

/* APPROACH DETAILS */
.approach-details {
    padding: 6rem 5%;
}

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

/* CTA ABOUT */
.cta-about {
    padding: 6rem 5%;
    background: #f9f9f9;
    text-align: center;
}

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

.cta-about-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-about-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-about-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2c2c2c;
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.cta-about-button:hover {
    transform: translateY(-2px);
}

/* SERVICES PAGE */
.services-intro {
    padding: 4rem 5%;
}

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

.services-detailed {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-card {
    background: #fff;
    border-radius: 8px;
    padding: 3rem;
    position: relative;
}

.featured-service {
    border: 2px solid #2c2c2c;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #2c2c2c;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
}

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

.service-name {
    font-size: 2rem;
    font-weight: 400;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.service-includes-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.service-includes-list {
    padding-left: 1.5rem;
}

.service-includes-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #666;
}

.cta-service-page {
    padding: 1rem 2.5rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s;
}

.cta-service-page:hover {
    background: #1a1a1a;
}

/* FAQ */
.services-faq {
    padding: 6rem 5%;
}

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

.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* CTA SERVICES */
.cta-services {
    padding: 6rem 5%;
    background: #2c2c2c;
    color: #fff;
    text-align: center;
}

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

.cta-services-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-services-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-services-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #2c2c2c;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.cta-services-button:hover {
    transform: translateY(-2px);
}

/* CONTACT PAGE */
.contact-info-section {
    padding: 6rem 5%;
}

.contact-info-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-email {
    color: #2c2c2c;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #777;
}

.contact-cta-section {
    padding: 6rem 5%;
    background: #f9f9f9;
    text-align: center;
}

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

.contact-cta-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact-cta-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-contact-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2c2c2c;
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.cta-contact-button:hover {
    transform: translateY(-2px);
}

.contact-map-placeholder {
    padding: 0;
}

.map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 1rem 2rem;
    border-radius: 4px;
}

.map-overlay p {
    font-size: 1rem;
    font-weight: 500;
}

.contact-extra-info {
    padding: 6rem 5%;
}

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

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.info-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* THANKS PAGE */
.thanks-hero {
    padding: 8rem 5% 5rem;
    text-align: center;
    background: #f9f9f9;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.thanks-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.thanks-message {
    padding: 4rem 5%;
}

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

.thanks-text-large {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.thanks-next-steps {
    padding: 6rem 5%;
    background: #f9f9f9;
}

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

.steps-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2c2c2c;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.thanks-cta {
    padding: 6rem 5%;
}

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

.thanks-cta-heading {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.thanks-link-button {
    padding: 1rem 2rem;
    background: #2c2c2c;
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    transition: transform 0.2s;
}

.thanks-link-button:hover {
    transform: translateY(-2px);
}

/* LEGAL PAGES */
.legal-hero {
    padding: 6rem 5% 4rem;
    text-align: center;
    background: #f9f9f9;
}

.legal-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 1rem;
    color: #888;
}

.legal-content {
    padding: 4rem 5%;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #555;
}

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

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #f9f9f9;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title-xl {
        font-size: 3rem;
    }

    .hero-subtitle-sparse {
        font-size: 1.2rem;
    }

    .page-title-xl {
        font-size: 2.5rem;
    }

    .section-heading-bold,
    .section-heading-centered {
        font-size: 2rem;
    }

    .text-large-centered {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .philosophy-split {
        flex-direction: column;
    }

    .cards-container-three {
        flex-direction: column;
    }

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

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

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

    .sticky-cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-timeline {
        flex-direction: column;
    }
}
