* {
    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;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

.hero-section {
    padding: 4rem 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    max-width: 800px;
    margin: 3rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-hero {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.problem-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
}

.problem-section h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.stats-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.stat-item strong {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 1rem;
    color: var(--text-light);
}

.insight-section {
    padding: 5rem 20px;
    background-color: var(--bg-light);
}

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

.insight-text h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.insight-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.insight-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-text {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-text:hover {
    transform: translateX(5px);
}

.trust-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
}

.trust-section h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.trust-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.testimonial-section {
    padding: 5rem 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.testimonial p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.services-section {
    padding: 5rem 20px;
    background-color: var(--bg-light);
}

.services-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

.urgency-section {
    padding: 5rem 20px;
    background-color: var(--danger-color);
    color: white;
    text-align: center;
}

.urgency-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-section p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-urgency {
    display: inline-block;
    background-color: white;
    color: var(--danger-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.process-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
}

.process-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

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

.step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.form-section {
    padding: 5rem 20px;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.contact-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.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 ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.final-cta-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.btn-final {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 20px 1rem;
}

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

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

.footer-column p {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    z-index: 10000;
}

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

.cookie-content p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

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

.page-header {
    padding: 4rem 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.header-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 20px;
    background-color: var(--bg-light);
}

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

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

.value-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.expertise-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
}

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

.expertise-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.expertise-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.expertise-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.approach-section {
    padding: 5rem 20px;
    background-color: var(--bg-light);
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.approach-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

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

.team-member {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.results-section {
    padding: 5rem 20px;
    background-color: var(--bg-light);
}

.results-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.results-section > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.results-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-stat {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.result-stat p {
    font-size: 1rem;
    color: var(--text-light);
}

.results-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.cta-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.services-intro {
    padding: 5rem 20px 2rem;
    background-color: var(--bg-white);
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.services-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-detail {
    padding: 3rem 20px 5rem;
    background-color: var(--bg-white);
}

.service-detail-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-detail-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

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

.service-detail-header {
    background-color: var(--bg-white);
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

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

.btn-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.comparison-section {
    padding: 3rem 20px 5rem;
    background-color: var(--bg-light);
}

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

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

.faq-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.faq-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

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

.contact-info-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
}

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

.contact-info-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

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

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-cta-section {
    padding: 5rem 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.btn-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.25rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.map-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
}

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

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-overlay p {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-methods-section {
    padding: 5rem 20px;
    background-color: var(--bg-light);
}

.contact-methods-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.methods-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.method-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.method-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.faq-contact-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
}

.faq-contact-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.thanks-section {
    padding: 5rem 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.thanks-icon {
    color: var(--success-color);
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-confirmation p {
    font-size: 1rem;
    color: var(--text-light);
}

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

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.steps-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thanks-info {
    margin: 3rem 0;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-header {
    padding: 4rem 20px 2rem;
    background-color: var(--bg-light);
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    padding: 3rem 20px 5rem;
    background-color: var(--bg-white);
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

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

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .stats-inline {
        flex-direction: row;
    }

    .insight-grid {
        flex-direction: row;
        align-items: center;
    }

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

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

    .trust-card {
        flex: 1;
        min-width: 250px;
    }

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

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

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

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

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

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

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

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

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

    .team-member {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .results-stats {
        flex-direction: row;
    }

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

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

    .methods-list {
        flex-direction: row;
    }

    .method-item {
        flex: 1;
    }

    .thanks-links {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .service-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .step {
        flex: 1;
    }

    .value-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}
