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

:root {
    --primary-color: #2d5f3f;
    --primary-dark: #1e4029;
    --secondary-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f7f5;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --accent-color: #d4a574;
}

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

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

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

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

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

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: var(--bg-light);
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background: var(--primary-dark);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

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

.intro-offset {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.intro-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 680px;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

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

.services-intro {
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.services-intro h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

.services-grid-alt {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-wide {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card-wide:hover .service-image img {
    transform: scale(1.05);
}

.service-details {
    padding: 2.5rem;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.service-price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary-dark);
}

.philosophy-section {
    padding: 0;
}

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

.philosophy-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.philosophy-content {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.philosophy-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

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

.text-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--primary-dark);
}

.testimonial-inline {
    padding: 5rem 5%;
    background: var(--primary-color);
}

.testimonial-content blockquote {
    max-width: 780px;
    margin: 0 auto;
}

.testimonial-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--bg-white);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    color: var(--accent-color);
}

.process-asymmetric {
    padding: 5rem 5%;
}

.process-header {
    margin-bottom: 4rem;
}

.process-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.process-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

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

.step-block {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-block.offset-right {
    margin-left: 0;
}

.step-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.step-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

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

.gallery-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.gallery-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.gallery-masonry {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.gallery-item.tall {
    height: 400px;
}

.gallery-item.wide {
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255,255,255,0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.additional-services h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.additional-card {
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.additional-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.additional-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.price-tag {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-medium);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.btn-primary {
    padding: 0.8rem 1.8rem;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: var(--bg-white);
    font-weight: 600;
    border: 2px solid var(--bg-white);
    border-radius: 4px;
    transition: all 0.3s;
}

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

.footer-split {
    background: var(--text-dark);
    color: var(--bg-white);
}

.footer-main {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 400px;
}

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

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

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

.hero-content-centered h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content-centered p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.services-detailed {
    display: flex;
    flex-direction: column;
}

.service-detailed {
    padding: 4rem 5%;
}

.service-detailed:nth-child(even) {
    background: var(--bg-light);
}

.service-content-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-text {
    flex: 1;
}

.service-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.service-features {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    list-style: disc;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.service-pricing {
    margin: 2rem 0;
}

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

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

.service-cta-section {
    padding: 5rem 5%;
    background: var(--primary-color);
}

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

.cta-content-centered h2 {
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.cta-content-centered p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.about-hero {
    padding: 4rem 5%;
}

.about-intro-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
}

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

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

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

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

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

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

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

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

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

.team-intro {
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

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

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    max-width: 400px;
    margin: 0 auto;
}

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

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

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

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.credential-label {
    font-weight: 600;
    color: var(--text-dark);
}

.credential-value {
    color: var(--text-medium);
    font-weight: 500;
}

.approach-section {
    padding: 0;
}

.approach-split {
    display: flex;
    flex-direction: column;
}

.approach-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

.approach-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.testimonials-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.testimonials-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-medium);
}

.cta-about {
    padding: 5rem 5%;
    background: var(--primary-color);
}

.contact-hero {
    padding: 5rem 5% 3rem;
    background: var(--bg-light);
}

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

.contact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-intro p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.contact-main {
    padding: 4rem 5%;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.service-areas {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-areas h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-areas p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.area-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

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

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.next-steps {
    padding: 5rem 5%;
}

.steps-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

.contact-cta {
    padding: 5rem 5%;
    background: var(--primary-color);
}

.thanks-hero {
    padding: 5rem 5%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.service-highlight {
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
}

.next-steps-thanks {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.next-steps-container h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.step-number-simple {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50%;
}

.step-simple p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    padding-top: 0.5rem;
}

.while-you-wait {
    padding: 5rem 5%;
}

.wait-content h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.wait-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wait-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.wait-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.wait-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.contact-reminder {
    padding: 3rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.reminder-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.reminder-email {
    font-size: 1.2rem;
    font-weight: 600;
}

.reminder-email a {
    color: var(--primary-color);
}

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

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

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

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

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.legal-section h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-section li {
    list-style: disc;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--text-dark);
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 90vh;
    }

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

    .hero-text p {
        font-size: 1.3rem;
    }

    .intro-offset {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }

    .intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 200px;
    }

    .service-card-wide {
        flex-direction: row;
    }

    .service-card-wide.reverse {
        flex-direction: row-reverse;
    }

    .service-image {
        width: 50%;
        height: auto;
    }

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

    .philosophy-image {
        width: 45%;
        height: auto;
    }

    .philosophy-content {
        width: 55%;
    }

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

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

    .step-block.offset-right {
        margin-left: 5%;
    }

    .gallery-masonry {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gallery-item {
        width: calc(50% - 0.75rem);
    }

    .gallery-item.tall {
        width: calc(50% - 0.75rem);
    }

    .gallery-item.wide {
        width: 100%;
    }

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

    .additional-card {
        flex: 1;
    }

    .service-content-split {
        flex-direction: row;
        align-items: center;
    }

    .service-detailed.reverse .service-content-split {
        flex-direction: row-reverse;
    }

    .service-visual {
        width: 45%;
    }

    .about-intro-split {
        flex-direction: row;
        align-items: center;
    }

    .about-image {
        width: 45%;
    }

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

    .value-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

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

    .credentials-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .credential-item {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

    .approach-split {
        flex-direction: row;
    }

    .approach-image {
        width: 45%;
        height: auto;
    }

    .approach-content {
        width: 55%;
    }

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

    .testimonial {
        flex: 1;
        min-width: calc(50% - 1.25rem);
    }

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

    .contact-visual {
        width: 45%;
    }

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

    .faq-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .wait-card {
        flex: 1;
    }
}

@media (min-width: 1200px) {
    .hero-text h1 {
        font-size: 4rem;
    }

    .services-grid-alt {
        gap: 5rem;
    }

    .gallery-item {
        width: calc(33.333% - 1rem);
    }

    .gallery-item.tall {
        width: calc(33.333% - 1rem);
    }

    .gallery-item.wide {
        width: calc(66.666% - 0.5rem);
    }

    .values-grid {
        gap: 2.5rem;
    }

    .value-card {
        min-width: calc(50% - 1.25rem);
    }

    .step-block.offset-right {
        margin-left: 10%;
    }
}
