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

:root {
    --primary-color: #0066cc;
    --secondary-color: #00a86b;
    --dark-color: #1a1a1a;
    --light-color: #f5f7fa;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --accent: #ff6b35;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

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

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

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

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

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

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

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.hero-split {
    display: flex;
    min-height: calc(100vh - 70px);
}

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

.hero-left {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: var(--white);
    align-items: center;
    padding: 3rem;
}

.hero-content {
    max-width: 600px;
}

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

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    overflow: hidden;
    position: relative;
}

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

.cta-primary,
.cta-secondary,
.cta-urgency {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

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

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

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

.cta-urgency {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta-urgency:hover {
    background-color: #008f5d;
    transform: translateY(-2px);
}

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

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

.intro-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
}

.split-insight {
    display: flex;
    min-height: 600px;
}

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

.insight-left {
    overflow: hidden;
}

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

.insight-right {
    padding: 4rem 3rem;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.insight-right p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.trust-section {
    padding: 5rem 0;
    background-color: var(--dark-color);
    color: var(--white);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-item h4 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.split-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

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

.content-left h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.problem-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.content-right img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.solution-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.solution-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.solution-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.solution-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-split {
    display: flex;
    min-height: 400px;
    background-color: var(--primary-color);
}

.testimonial-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

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

.services-reveal {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.service-features {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features p {
    padding: 0.5rem 0;
    color: var(--text-light);
}

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

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

.btn-select:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.selected-service-display {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.urgency-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent) 0%, #d94d1e 100%);
    color: var(--white);
    text-align: center;
}

.urgency-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.benefits-final {
    padding: 5rem 0;
    background-color: var(--white);
}

.benefits-final h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

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

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--dark-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 999;
}

.sticky-cta.show {
    display: flex;
}

.sticky-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-content span {
    color: var(--white);
    font-weight: 600;
}

.sticky-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #e55a2b;
    transform: scale(1.05);
}

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
}

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: var(--white);
    text-align: center;
}

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

.about-story {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.story-content {
    flex: 1;
}

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

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

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.numbers-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

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

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

.number-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.number-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.number-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.team-approach {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.team-approach > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.approach-steps {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

.step-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-us {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.why-us h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

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

.reason-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
}

.reason-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reason-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 0;
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
}

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

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-intro-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.services-intro-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.badge-large {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
}

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

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

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

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

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

.service-pricing {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

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

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.service-pricing-compare {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-separate {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.price-package {
    display: flex;
    flex-direction: column;
}

.savings {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-service,
.btn-service-premium {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-service:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.btn-service-premium {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-service-premium:hover {
    background-color: #008f5d;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-faq {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-main {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item .note {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-form-wrapper {
    flex: 1;
}

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

.form-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-regions {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-regions h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-color);
}

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

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

.region-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
}

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

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

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

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

.thanks-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

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

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

.next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 6px;
}

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

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    color: var(--text-light);
}

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

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.additional-info {
    margin-top: 2rem;
    color: var(--text-light);
}

.legal-page {
    padding: 5rem 0;
    background-color: var(--white);
}

.update-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--dark-color);
}

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

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

.legal-page ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-insight {
        flex-direction: column;
        min-height: auto;
    }

    .insight-left,
    .insight-right {
        width: 100%;
    }

    .insight-left {
        min-height: 400px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonial-split {
        flex-direction: column;
        min-height: auto;
    }

    .testimonial-image {
        min-height: 300px;
    }

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

    .service-detail-image {
        min-height: 300px;
    }

    .container-split {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 0.75rem 1rem;
    }

    .sticky-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

    .lead {
        font-size: 1.1rem;
    }

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

    .intro-section h2,
    .solution-section h2,
    .services-reveal h2,
    .benefits-final h2,
    .values-section h2,
    .numbers-section h2,
    .team-approach h2,
    .why-us h2,
    .cta-about h2,
    .services-cta h2,
    .contact-regions h2,
    .services-faq h2,
    .contact-faq-section h2,
    .thanks-container h1,
    .legal-page h1 {
        font-size: 2rem;
    }

    .trust-grid {
        flex-direction: column;
    }

    .benefits-split {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .contact-form {
        padding: 2rem;
    }

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

    .sticky-content span {
        display: none;
    }

    .service-detail-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 2rem 1.5rem;
    }

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

    .cta-primary,
    .cta-secondary,
    .cta-urgency {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .thanks-container {
        padding: 2rem 1.5rem;
    }
}