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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f8f8;
    --accent: #2d5a4d;
    --accent-light: #4a7c68;
    --text-dark: #222;
    --text-light: #666;
    --border-color: #ddd;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent);
    color: #fff;
}

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 90%;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 0.5rem;
}

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

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 90, 77, 0.4);
}

.cta-hero:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 77, 0.5);
}

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

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

.intro-narrative {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
}

.intro-narrative h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--primary-dark);
}

.intro-narrative p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.split-visual-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.split-image {
    flex: 1;
    min-height: 400px;
}

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

.split-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.split-content h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

.cta-inline {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-dark);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-inline:hover {
    background: var(--accent);
    transform: translateX(5px);
}

.testimonial-section {
    padding: var(--spacing-lg) 0;
    background: var(--accent);
    color: #fff;
}

.testimonial-large {
    text-align: center;
}

.testimonial-large p {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-large cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.problem-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
}

.problem-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.problem-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.visual-showcase {
    padding: var(--spacing-lg) 0;
    background: var(--primary-light);
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.showcase-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.insight-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
}

.insight-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

.cta-section-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

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

.trust-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-text h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

.trust-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-inline {
    padding: var(--spacing-lg) 0;
    background: #fff;
}

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

.testimonial-inline p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--text-light);
}

.services-reveal {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
}

.services-reveal h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

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

.btn-select-service {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-dark);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
}

.form-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.urgency-section {
    padding: var(--spacing-lg) 0;
    background: var(--primary-light);
}

.urgency-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

.final-cta {
    padding: var(--spacing-xl) 0;
    background: var(--primary-dark);
    color: #fff;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
}

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

.cta-final-btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-final-btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-brand p {
    opacity: 0.8;
}

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

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

.footer-col a {
    display: block;
    margin-bottom: 0.7rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(45, 90, 77, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

.page-hero {
    padding: 8rem 0 4rem;
    background: var(--primary-light);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

.services-detailed {
    padding: var(--spacing-xl) 0;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-detail-visual {
    width: 100%;
    height: 400px;
}

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

.service-detail-content {
    padding: 3rem;
}

.service-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-detail-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.service-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.service-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.3rem;
}

.service-detail-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

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

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

.btn-book-service {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.services-faq {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
}

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

.faq-item {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.services-cta {
    padding: var(--spacing-xl) 0;
    background: #fff;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

.about-hero {
    padding: 8rem 0 4rem;
    background: var(--primary-light);
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

.about-story {
    padding: var(--spacing-xl) 0;
    background: #fff;
}

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

.about-story p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-philosophy {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.philosophy-visual {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-approach {
    padding: var(--spacing-xl) 0;
    background: #fff;
}

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

.about-approach > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.approach-step {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

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

.about-values {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
}

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

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

.value-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-testimonials {
    padding: var(--spacing-xl) 0;
    background: #fff;
}

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

.testimonial-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--primary-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.testimonial-block p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.about-cta {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 8rem 0 4rem;
    background: var(--primary-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

.contact-info-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
}

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

.contact-info-card {
    background: var(--primary-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-info-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--accent);
    text-decoration: underline;
}

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

.contact-faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
}

.contact-faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.faq-list .faq-item a {
    color: var(--accent);
    text-decoration: underline;
}

.contact-map-section {
    padding: var(--spacing-lg) 0;
    background: #fff;
}

.contact-map-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.map-placeholder {
    background: var(--primary-light);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-final {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
    text-align: center;
}

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

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

.contact-final a {
    color: var(--accent);
    text-decoration: underline;
}

.thanks-section {
    padding: 10rem 0 6rem;
    background: var(--primary-light);
    min-height: 70vh;
}

.thanks-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-align: center;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.thanks-service-info {
    text-align: center;
    margin-bottom: 3rem;
}

.selected-service-display {
    font-size: 1.2rem;
    color: var(--text-dark);
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

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

.thanks-steps {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    list-style-position: inside;
}

.thanks-steps li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.thanks-steps li:last-child {
    border-bottom: none;
}

.thanks-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.thanks-cta a {
    color: var(--accent);
    text-decoration: underline;
}

.btn-back-home {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

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

.legal-page {
    padding: 8rem 0 4rem;
    background: #fff;
    min-height: 80vh;
}

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

.legal-page h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

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

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

.legal-page li {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

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

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

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

    .nav-menu {
        display: flex;
    }

    .split-visual-section {
        flex-direction: row;
    }

    .split-visual-section.reverse {
        flex-direction: row-reverse;
    }

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

    .showcase-item {
        flex: 1;
    }

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

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

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

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

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

    .about-hero-content {
        flex-direction: row;
        align-items: center;
    }

    .about-hero-image {
        margin: 0;
    }

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

    .philosophy-visual {
        width: 50%;
    }

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

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

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

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

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

    .contact-info-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .floating-nav {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }
}