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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ec6;
    --accent-color: #e67e22;
    --dark-color: #1a1a1a;
    --light-gray: #f4f7f9;
    --medium-gray: #e0e6ea;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --success: #27ae60;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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);
}

.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    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;
    list-style: none;
    gap: 2rem;
}

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

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

.nav-cta {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    background-color: var(--light-gray);
}

.hero-content {
    flex: 1;
    padding: 4rem;
}

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

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-visual {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.intro-reverse {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 500px;
}

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

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

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

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

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

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.problem-card p {
    opacity: 0.9;
    line-height: 1.7;
}

.solution-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

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

.solution-visual {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 500px;
}

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

.services-showcase {
    background-color: var(--light-gray);
    padding: 5rem 2rem;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.additional-services {
    max-width: 1400px;
    margin: 4rem auto 0;
}

.additional-services h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.addon-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.addon-price {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.testimonials-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--white);
}

.testimonial-content {
    flex: 1;
    padding: 0 4rem;
}

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

.testimonial-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.testimonial-visual {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 500px;
}

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

.cta-urgency {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
}

.urgency-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.urgency-highlight {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-section {
    background-color: var(--light-gray);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-large);
}

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

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    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);
}

.trust-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-visual {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 500px;
}

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

.trust-content {
    flex: 1;
    padding: 0 4rem;
}

.trust-content h2 {
    font-size: 2.25rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

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

.trust-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.btn-primary,
.btn-secondary,
.btn-large,
.btn-submit,
.btn-select {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

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

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

.btn-large {
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.btn-large:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--white);
    width: 100%;
    font-size: 1.1rem;
    padding: 1.125rem;
}

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

.btn-select {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    margin-top: 1rem;
}

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

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

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

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

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

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

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

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

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

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.about-story-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.story-image {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 500px;
}

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

.mission-section {
    background-color: var(--light-gray);
    padding: 5rem 2rem;
}

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

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

.mission-lead {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.values-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.values-image {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 500px;
}

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

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

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

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

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

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

.team-section {
    background-color: var(--light-gray);
    padding: 5rem 2rem;
}

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

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

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

.team-member {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--medium-gray);
    overflow: hidden;
}

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

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

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

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
}

.numbers-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.numbers-content {
    flex: 1;
    padding: 0 4rem;
}

.numbers-content h2 {
    font-size: 2.25rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

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

.stat-box {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

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

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.numbers-image {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 500px;
}

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

.cta-about,
.cta-services {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-about p,
.cta-services p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro-text {
    flex: 1;
    padding: 0 4rem;
}

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

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

.services-intro-image {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 500px;
}

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

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

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

.service-detailed {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

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

.service-detailed-left {
    flex: 1;
    padding: 3rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.service-detailed-left h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-tagline {
    font-size: 1.1rem;
    opacity: 0.95;
}

.service-detailed-right {
    flex: 1.5;
    padding: 3rem;
    background-color: var(--white);
}

.service-detailed-right h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.detailed-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.detailed-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-color);
}

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

.service-best-for {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.additional-services-section {
    background-color: var(--light-gray);
    padding: 5rem 2rem;
}

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

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

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

.addon-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.addon-price-tag {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.addon-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.addon-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.addon-includes li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-color);
}

.addon-includes li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.process-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.process-image {
    flex: 1;
    background-color: var(--medium-gray);
    min-height: 500px;
}

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

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

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

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-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-content h4 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.faq-section {
    background-color: var(--light-gray);
    padding: 5rem 2rem;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

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

.contact-info {
    flex: 1;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--medium-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.contact-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

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

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

.thanks-details {
    margin-bottom: 3rem;
}

.selected-service {
    font-size: 1.1rem;
    color: var(--text-color);
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.thanks-next h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.next-step {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

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

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

.thanks-info {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.thanks-info p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

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

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

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

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

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

.legal-container h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    text-align: center;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-reverse,
    .solution-split,
    .testimonials-split,
    .trust-split,
    .about-story-split,
    .values-split,
    .numbers-split,
    .services-intro-split,
    .process-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .solution-text,
    .testimonial-content,
    .trust-content,
    .story-text,
    .values-text,
    .numbers-content,
    .services-intro-text,
    .process-text,
    .contact-info {
        padding: 2rem;
    }

    .hero-visual,
    .intro-image,
    .solution-visual,
    .testimonial-visual,
    .trust-visual,
    .story-image,
    .values-image,
    .numbers-image,
    .services-intro-image,
    .process-image {
        min-height: 300px;
    }

    .service-detailed {
        flex-direction: column;
    }

    .service-detailed-left,
    .service-detailed-right {
        padding: 2rem;
    }

    .nav-links {
        display: none;
    }

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

    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

    .services-split,
    .problem-grid,
    .addon-grid,
    .team-grid,
    .stats-grid,
    .addon-services-grid,
    .faq-grid,
    .next-steps {
        flex-direction: column;
    }
}