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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e8a547;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #28a745;
    --spacing-unit: 1rem;
}

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

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

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

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

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-right a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-cta:hover {
    background-color: #1e4a61;
    color: #fff !important;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    height: 85vh;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1e4a61;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 125, 0.3);
}

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

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

.trust-strip {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    color: #666;
}

.problem-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.split-right-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

.split-right-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-right-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.split-left-visual {
    flex: 1;
    height: 70vh;
}

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

.insight-section {
    padding: 6rem 0;
    background-color: #fff;
}

.insight-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.insight-cards {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
}

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

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

.insight-card p {
    color: #666;
    line-height: 1.7;
}

.services-split {
    display: flex;
    background-color: var(--light-color);
}

.services-left {
    flex: 0.9;
}

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

.services-right {
    flex: 1.1;
    padding: 5rem 4rem;
}

.services-right h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.service-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    flex: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 1rem;
}

.service-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.select-service {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: #d69435;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 6rem 0;
    background-color: #fff;
}

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

.testimonials-grid {
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.why-now-split {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
}

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

.why-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.why-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.why-right {
    flex: 1;
}

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

.form-section {
    padding: 6rem 0;
    background-color: #fff;
}

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

.form-split-left {
    flex: 1;
    padding-top: 2rem;
}

.form-split-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.form-split-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefit {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-split-right {
    flex: 1;
}

.contact-form {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #1e4a61;
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: none;
}

.cta-sticky-section {
    padding: 3rem 0;
    background-color: var(--primary-color);
    color: #fff;
}

.cta-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.cta-sticky-content .btn-primary {
    background-color: var(--secondary-color);
}

.cta-sticky-content .btn-primary:hover {
    background-color: #d69435;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.footer-col p {
    color: #ccc;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: #218838;
}

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

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

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

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

.hero-lead {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.about-left {
    flex: 1;
}

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

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

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

.about-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-split {
    display: flex;
    padding: 6rem 0;
    background-color: #fff;
}

.team-right {
    flex: 1;
    padding: 3rem 4rem;
}

.team-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.team-right p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

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

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.team-left {
    flex: 1;
}

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

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

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

.approach-steps {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.approach-step {
    flex: 1;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.approach-step p {
    color: #666;
    line-height: 1.7;
}

.cta-about {
    padding: 6rem 0;
    background-color: var(--primary-color);
    text-align: center;
    color: #fff;
}

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

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-about .btn-primary {
    background-color: var(--secondary-color);
}

.cta-about .btn-primary:hover {
    background-color: #d69435;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

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

.service-detail-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.service-description {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-includes ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-includes li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.service-detail-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.service-comparison {
    padding: 6rem 0;
    background-color: var(--light-color);
}

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

.comparison-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

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

.comparison-card {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.comparison-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.comparison-card p {
    color: #666;
    line-height: 1.7;
}

.cta-services {
    padding: 6rem 0;
    background-color: var(--primary-color);
    text-align: center;
    color: #fff;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-services .btn-primary {
    background-color: var(--secondary-color);
}

.cta-services .btn-primary:hover {
    background-color: #d69435;
}

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

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

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

.contact-info-block p {
    color: #666;
    line-height: 1.7;
}

.contact-info-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-right {
    flex: 1;
}

.contact-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.map-info-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-info {
    flex: 1;
}

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

.map-info h3:first-child {
    margin-top: 0;
}

.map-info ul {
    list-style: none;
}

.map-info li {
    padding: 0.5rem 0;
    color: #666;
}

.map-info p {
    color: #666;
    line-height: 1.7;
}

.map-placeholder {
    flex: 1;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.contact-cta-section {
    padding: 6rem 0;
    background-color: #fff;
    text-align: center;
}

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

.contact-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.thanks-hero {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: #fff;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.service-confirmation {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.thanks-next-steps {
    text-align: left;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
}

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

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin-left: 2rem;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: #666;
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    top: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.thanks-resources {
    padding: 6rem 0;
    background-color: #fff;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.resource-card {
    flex: 1;
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

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

.resource-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.resource-card a:hover {
    text-decoration: underline;
}

.thanks-contact-info {
    padding: 4rem 0;
    background-color: var(--light-color);
    text-align: center;
}

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

.thanks-contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.thanks-contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-contact-info a:hover {
    text-decoration: underline;
}

.contact-hours {
    font-size: 1rem;
    color: #999;
}

.legal-page {
    padding: 4rem 0 6rem;
    background-color: #fff;
}

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

.legal-date {
    font-size: 1rem;
    color: #999;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-page p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .problem-split,
    .services-split,
    .why-now-split,
    .about-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-right,
    .split-left-visual,
    .why-right {
        height: 50vh;
    }

    .hero-left,
    .split-right-content,
    .services-right,
    .why-left,
    .about-right,
    .team-right,
    .contact-left {
        padding: 3rem 2rem;
    }

    .insight-cards,
    .testimonials-grid,
    .approach-steps,
    .resource-cards {
        flex-direction: column;
    }

    .form-container,
    .service-detail-split,
    .map-info-split {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-detail-right img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .navigation {
        padding: 1rem 1.5rem;
    }

    .nav-right {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

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

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

    .values-grid,
    .comparison-grid,
    .faq-grid {
        flex-direction: column;
    }

    .value-card,
    .comparison-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

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

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .nav-cta {
        display: none;
    }
}