:root {
    --color-primary: #1a5f4a;
    --color-primary-dark: #134435;
    --color-primary-light: #2a7a5f;
    --color-secondary: #e8b84a;
    --color-secondary-dark: #c99a32;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f9fc;
    --color-bg-dark: #1a2332;
    --color-border: #e2e8f0;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-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 10px 40px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: 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);
}

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: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

ul, ol {
    padding-left: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-text);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.btn-light:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-bg-alt);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

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

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

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
}

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

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

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

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(26, 95, 74, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    max-width: 500px;
}

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

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

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

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

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

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

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

.intro-image {
    flex: 1;
    max-width: 450px;
}

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

.services-preview {
    padding: 5rem 1.5rem;
}

.services-preview-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.services-preview-header h2 {
    margin-bottom: 0.75rem;
}

.services-preview-header p {
    color: var(--color-text-light);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(to bottom, rgba(26, 95, 74, 0.03), transparent);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

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

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

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-link {
    font-weight: 500;
    font-size: 0.9375rem;
}

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

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

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

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

.process-header h2 {
    margin-bottom: 0.5rem;
}

.process-header p {
    color: var(--color-text-light);
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

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

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

.testimonials-container > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

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

.testimonial footer {
    display: flex;
    flex-direction: column;
}

.testimonial footer strong {
    color: var(--color-text);
}

.testimonial footer span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

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

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.why-us-image {
    flex: 1;
    max-width: 450px;
}

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

.why-us-content {
    flex: 1;
}

.why-us-content h2 {
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.benefits-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

.benefits-list p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 4rem 1.5rem;
}

.cta-banner-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-banner p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.contact-info {
    flex: 1;
}

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

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

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

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.contact-item span {
    color: var(--color-text-light);
}

.contact-form {
    flex: 1;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    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-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 400;
}

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

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

.partners-label {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0.6;
}

.site-footer {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 1.5rem 2rem;
}

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

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

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: var(--color-secondary);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

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

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

.footer-nav-column ul {
    list-style: none;
    padding: 0;
}

.footer-nav-column li {
    margin-bottom: 0.5rem;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 1.25rem 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.cookie-content a {
    color: var(--color-secondary);
}

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

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--color-primary);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: all var(--transition);
}

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

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

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

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

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

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

.about-intro {
    padding: 5rem 1.5rem;
}

.about-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    margin-bottom: 1.5rem;
}

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

.about-intro-image {
    flex: 1;
    max-width: 450px;
}

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

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

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.mission-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.mission-block h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.mission-block p {
    color: var(--color-text-light);
}

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

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

.team-container > h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

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

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

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

.member-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.team-member h3 {
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-member p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

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

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

.credentials-container > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.credentials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.credential-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.credential-item strong {
    display: block;
    margin-bottom: 0.5rem;
}

.credential-item span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

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

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

.timeline-container > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.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: 2rem;
    padding-left: 2rem;
}

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

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

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

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

.about-cta {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
    text-align: center;
}

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

.about-cta h2 {
    margin-bottom: 1rem;
}

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

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

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

.lead-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

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

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

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.service-detail-content {
    flex: 1;
}

.service-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(26, 95, 74, 0.1);
    color: var(--color-primary);
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-detail-content > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    margin-bottom: 1rem;
}

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

.service-features li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.service-pricing {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.price-tier {
    flex: 1;
    min-width: 180px;
    padding: 1.25rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.alt-bg .price-tier {
    background: #fff;
}

.price-tier h5 {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

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

.price-tier p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.service-detail-image {
    flex: 0 0 350px;
}

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

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

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

.services-cta-container h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.services-cta-container p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

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

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

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

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

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

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

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

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

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

.contact-page-section {
    padding: 5rem 1.5rem;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

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

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

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

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-item strong {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.office-item span {
    color: var(--color-text);
}

.contact-note {
    padding: 1rem;
    background: rgba(26, 95, 74, 0.05);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
}

.contact-note p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

.contact-page-form {
    flex: 1;
    max-width: 500px;
}

.contact-page-form > h2 {
    margin-bottom: 0.5rem;
}

.contact-page-form > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.map-section {
    padding: 0 1.5rem 5rem;
}

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

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
}

.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 1rem;
}

.map-overlay p {
    color: #fff;
    font-weight: 500;
    margin: 0;
}

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

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

.contact-faq-container > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-faq-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-faq-item p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

.thanks-section {
    padding: 5rem 1.5rem;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-primary);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

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

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

.thanks-details {
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
    display: inline-block;
}

.thanks-details:empty {
    display: none;
}

.thanks-details p {
    margin: 0;
}

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

.thanks-next h3 {
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.next-steps .step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.next-steps .step-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

.next-steps .step-content p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

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

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

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

.thanks-resources h2 {
    margin-bottom: 0.5rem;
}

.thanks-resources > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.resources-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: left;
}

.resource-card {
    flex: 1;
    min-width: 260px;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.resource-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.resource-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

.legal-page {
    padding: 5rem 1.5rem;
}

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

.legal-container > h1 {
    margin-bottom: 0.5rem;
}

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

.legal-content h2 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

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

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

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

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

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

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

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

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

.legal-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-nav a {
    font-weight: 500;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .intro-container,
    .about-intro-container,
    .why-us-container {
        flex-direction: column;
    }

    .intro-image,
    .about-intro-image,
    .why-us-image {
        max-width: 100%;
        order: -1;
    }

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

    .service-detail-image {
        flex: none;
        max-width: 100%;
        order: -1;
    }

    .contact-container,
    .contact-page-container {
        flex-direction: column;
    }

    .contact-form,
    .contact-page-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero-section h1 {
        font-size: 2.25rem;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
    }

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

    .nav-list li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid,
    .process-steps,
    .testimonials-list,
    .team-grid,
    .credentials-grid,
    .service-pricing {
        flex-direction: column;
    }

    .service-card,
    .process-step,
    .testimonial,
    .team-member,
    .credential-item,
    .price-tier {
        min-width: 100%;
    }

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

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

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

    .sticky-cta {
        display: none;
    }

    .legal-table {
        display: block;
        overflow-x: auto;
    }
}

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

    .btn {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
