:root {
    --color-primary: #1a5f7a;
    --color-primary-dark: #134a5f;
    --color-primary-light: #2980b9;
    --color-secondary: #e8b445;
    --color-secondary-dark: #d4a33a;
    --color-accent: #27ae60;
    --color-text: #2c3e50;
    --color-text-light: #5d6d7e;
    --color-text-muted: #7f8c8d;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-bg-dark: #1a2634;
    --color-border: #e1e5e9;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

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

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
}

.hero-editorial {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    padding: 4rem 1.5rem;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-text-block {
    flex: 1 1 500px;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-intro {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image-block {
    flex: 1 1 400px;
}

.hero-image-block img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-button.primary {
    background: var(--color-primary);
    color: white;
}

.cta-button.primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary {
    background: var(--color-secondary);
    color: var(--color-text);
}

.cta-button.secondary:hover {
    background: var(--color-secondary-dark);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.cta-button.outline:hover {
    background: var(--color-primary);
    color: white;
}

.story-intro,
.story-section {
    padding: 4rem 1.5rem;
}

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

.story-container.narrow {
    max-width: 720px;
}

.story-lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-section p {
    margin-bottom: 1.25rem;
}

.story-section h2 {
    margin-bottom: 1.5rem;
}

.stats-ribbon {
    background: var(--color-primary);
    padding: 3rem 1.5rem;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.25rem;
}

.editorial-section {
    padding: 5rem 1.5rem;
}

.editorial-section.light-bg {
    background: var(--color-bg-alt);
}

.editorial-section.dark-bg {
    background: var(--color-bg-dark);
    color: white;
}

.editorial-section.dark-bg h2,
.editorial-section.dark-bg p {
    color: white;
}

.editorial-section.dark-bg .inline-cta.light {
    color: var(--color-secondary);
}

.editorial-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.editorial-content.reverse {
    flex-direction: row-reverse;
}

.editorial-image-left,
.editorial-image-right {
    flex: 1 1 400px;
}

.editorial-image-left img,
.editorial-image-right img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.editorial-text {
    flex: 1 1 450px;
}

.editorial-text h2 {
    margin-bottom: 1.25rem;
}

.editorial-text p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.inline-cta {
    display: inline-block;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0.5rem;
    position: relative;
}

.inline-cta::after {
    content: ' →';
}

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

.services-preview {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

.services-preview-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header.centered {
    text-align: center;
}

.section-header p {
    margin-top: 0.75rem;
    color: var(--color-text-light);
    max-width: 600px;
}

.section-header.centered p {
    margin-left: auto;
    margin-right: auto;
}

.services-grid-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.service-card {
    flex: 1 1 300px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.service-card-content {
    padding: 1.5rem;
}

.service-card-content h3 {
    margin-bottom: 0.5rem;
}

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

.service-price {
    display: inline-block;
    font-weight: 600;
    color: var(--color-primary);
}

.services-cta-block {
    text-align: center;
}

.testimonials-editorial {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
}

.testimonial-item.featured {
    border-left-color: var(--color-secondary);
    background: linear-gradient(to right, rgba(232, 180, 69, 0.05), white);
}

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

.testimonial-item cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.cta-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-section .cta-button.primary {
    background: white;
    color: var(--color-primary);
}

.cta-section .cta-button.primary:hover {
    background: var(--color-bg-alt);
}

.cta-section .cta-button.outline {
    border-color: white;
    color: white;
}

.cta-section .cta-button.outline:hover {
    background: white;
    color: var(--color-primary);
}

.trust-badges {
    padding: 3rem 1.5rem;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

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

.trust-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-light);
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 1.5rem 2rem;
}

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

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-links {
    flex: 2 1 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1 1 150px;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    margin-bottom: 0.25rem;
}

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}

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

.cookie-btn.accept:hover {
    background: #219a52;
}

.cookie-btn.reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

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

.cookie-link {
    color: var(--color-secondary);
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--color-secondary);
    color: var(--color-text);
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: all var(--transition);
}

.sticky-cta:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
}

.page-hero.compact {
    padding: 4rem 1.5rem;
}

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

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
}

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

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

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

.value-item {
    flex: 1 1 240px;
    padding: 1.5rem;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-primary);
}

.value-item h3 {
    margin-bottom: 0.75rem;
}

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

.team-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 240px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.team-member-image {
    height: 240px;
    overflow: hidden;
}

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

.team-member h3 {
    padding: 1.25rem 1.25rem 0.25rem;
}

.team-role {
    display: block;
    padding: 0 1.25rem;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
}

.team-member p {
    padding: 0.75rem 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.timeline-section {
    padding: 5rem 1.5rem;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-year {
    display: inline-block;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.services-intro {
    padding: 4rem 1.5rem 2rem;
    text-align: center;
}

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

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

.service-detail {
    padding: 4rem 1.5rem;
}

.service-detail.alt-bg {
    background: var(--color-bg-alt);
}

.service-detail-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-age-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-tagline {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.service-detail-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.service-detail-image {
    flex: 1 1 400px;
}

.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-detail-info {
    flex: 1 1 450px;
}

.service-description h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

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

.service-pricing-box {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}

.service-pricing-box h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pricing-option {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    gap: 0.5rem;
}

.pricing-option.featured {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.08) 0%, rgba(26, 95, 122, 0.03) 100%);
    border: 2px solid var(--color-primary);
}

.option-name {
    font-weight: 600;
    flex: 1 1 150px;
}

.option-details {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    flex: 1 1 200px;
}

.option-price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.methodology-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-dark);
    color: white;
}

.methodology-container {
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-section .section-header h2 {
    color: white;
}

.methodology-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.methodology-item {
    flex: 1 1 220px;
    padding: 1.5rem;
}

.methodology-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.methodology-item h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.methodology-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
}

.faq-section {
    padding: 4rem 1.5rem;
}

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

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

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    color: var(--color-text-light);
}

.contact-main {
    padding: 4rem 1.5rem;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info-column {
    flex: 1 1 350px;
}

.contact-form-column {
    flex: 1 1 450px;
}

.contact-info-block h2 {
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.contact-extra-info {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.contact-extra-info h3 {
    margin-bottom: 0.75rem;
}

.contact-extra-info p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.form-group {
    flex: 1 1 200px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex: 1 1 100%;
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.checkbox-label input {
    width: auto;
    margin-top: 0.2rem;
}

.submit-btn {
    flex: 1 1 100%;
}

.map-section {
    padding: 0;
}

.map-container {
    max-width: 100%;
}

.map-placeholder {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1.5rem 1.5rem;
}

.map-overlay p {
    color: white;
    text-align: center;
    font-weight: 500;
}

.faq-contact {
    padding: 4rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.faq-contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.faq-card {
    flex: 1 1 220px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

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

.thanks-section {
    padding: 6rem 1.5rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-accent);
}

.thanks-section h1 {
    margin-bottom: 1rem;
}

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

.thanks-details {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.step-text {
    color: var(--color-text-light);
    padding-top: 0.25rem;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.thanks-contact {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.legal-hero {
    background: var(--color-bg-dark);
    padding: 4rem 1.5rem;
    text-align: center;
}

.legal-hero-content h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.legal-content {
    padding: 4rem 1.5rem;
}

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

.legal-article h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-article h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.legal-article p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.legal-article ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-article li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
    position: relative;
}

.legal-article li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--color-primary);
}

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

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        padding: 1rem;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .hero-content-wrapper {
        flex-direction: column;
    }

    .editorial-content,
    .editorial-content.reverse {
        flex-direction: column;
    }

    .service-detail-content,
    .service-detail-content.reverse {
        flex-direction: column;
    }

    .sticky-cta {
        display: none;
    }

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

@media (max-width: 480px) {
    .stats-container {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
    }
}
