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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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;
}

.navbar {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

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

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

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

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

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    color: var(--text-dark);
}

.btn-cookie.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    padding: 4rem;
}

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

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image,
.intro-text {
    flex: 1;
}

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

.intro-text {
    padding: 4rem;
}

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

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

.problem-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

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

.problem-left,
.problem-right {
    flex: 1;
}

.problem-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.services-section {
    padding: 6rem 2rem;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 90px;
}

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

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.trust-split {
    display: flex;
    align-items: center;
}

.trust-left,
.trust-right {
    flex: 1;
}

.trust-left {
    padding: 4rem;
}

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.trust-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section {
    padding: 6rem 2rem;
}

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

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.process-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

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

.process-steps {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

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

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.cta-split {
    display: flex;
}

.cta-left,
.cta-right {
    flex: 1;
}

.cta-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-right {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.cta-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.form-section {
    padding: 6rem 2rem;
}

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

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.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: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

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

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 0.875rem;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-full {
    width: 100%;
}

.why-us-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-us-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.why-item {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.why-item p {
    color: var(--text-light);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.about-text {
    flex: 1;
    padding: 4rem;
}

.about-image {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

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

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.value-card p {
    color: var(--text-light);
}

.timeline-section {
    padding: 6rem 2rem;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

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

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-year {
    width: 100px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.timeline-content p {
    color: var(--text-light);
}

.team-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.team-member {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

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

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

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

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

.mission-split {
    display: flex;
    padding: 6rem 0;
}

.mission-left {
    flex: 1;
    padding: 4rem;
}

.mission-right {
    flex: 1;
}

.mission-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.mission-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--bg-light);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.services-detail-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

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

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

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

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

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

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

.featured-service {
    border: 2px solid var(--primary-color);
    border-radius: 12px;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.savings-note {
    color: var(--success-color);
    font-weight: 600;
    font-size: 1rem;
}

.comparison-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.comparison-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.comparison-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

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

.comparison-card p {
    color: var(--text-light);
}

.faq-section {
    padding: 6rem 2rem;
}

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

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

.faq-item {
    margin-bottom: 2rem;
}

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

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

.contact-split-section {
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-map-side {
    flex: 1;
}

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

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

.contact-info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

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

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.visit-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.visit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.response-section {
    padding: 6rem 0;
}

.response-split {
    display: flex;
    align-items: center;
}

.response-left,
.response-right {
    flex: 1;
}

.response-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.response-right {
    padding: 4rem;
}

.response-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.response-right p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.response-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.response-stat {
    text-align: center;
}

.office-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.office-gallery {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.office-photo {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.faq-contact-section {
    padding: 6rem 2rem;
}

.faq-contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.faq-contact-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

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

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--success-color);
}

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

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    max-width: 200px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-icon-arrow {
    font-size: 2rem;
    color: var(--text-light);
}

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

.thanks-info-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.thanks-info-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.info-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

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

.info-card p {
    color: var(--text-light);
}

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

.legal-page {
    padding: 4rem 2rem;
}

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

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

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

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

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

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

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

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

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

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

#reset-cookies {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .intro-split.reverse,
    .problem-container,
    .trust-split,
    .cta-split,
    .form-container,
    .about-intro-split,
    .mission-split,
    .contact-split-section,
    .response-split,
    .service-detail-split,
    .service-detail-card.reverse .service-detail-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-text,
    .trust-left,
    .cta-right,
    .form-left,
    .about-text,
    .mission-left,
    .response-right {
        padding: 2rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .intro-text h2,
    .trust-left h2,
    .cta-right h2,
    .form-left h2,
    .about-text h2,
    .mission-left h2,
    .response-right h2 {
        font-size: 1.75rem;
    }

    .services-grid,
    .testimonials-grid,
    .process-steps,
    .why-grid,
    .values-grid,
    .team-grid,
    .comparison-grid,
    .office-gallery,
    .thanks-info-container {
        flex-direction: column;
    }

    .trust-stats,
    .response-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-actions,
    .steps-grid {
        flex-direction: column;
    }

    .step-icon-arrow {
        transform: rotate(90deg);
    }
}
