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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2e7d4e;
    --accent-color: #ff6b35;
    --text-dark: #1f1f1f;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--text-light);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.main-nav {
    background-color: var(--text-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

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

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.05rem;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-primary:hover {
    background-color: #e85a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.cta-inline {
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
}

.cta-inline:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.intro-image {
    flex: 1;
    padding-right: 4rem;
}

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

.intro-content {
    flex: 1;
}

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

.intro-content p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #444;
}

.stats-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

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

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

.services-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.services-list {
    margin-bottom: 2rem;
}

.services-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-image {
    flex: 1;
}

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

.technology-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.tech-image {
    flex: 1;
    padding-left: 2rem;
}

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

.tech-content {
    flex: 1;
    max-width: 650px;
    padding: 0 4rem 0 2rem;
}

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

.tech-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #444;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333;
}

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

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

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

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

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

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 70px;
}

.step-text h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #555;
    font-size: 1.05rem;
}

.process-image {
    flex: 1;
}

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

.cta-form-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-container > p {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

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

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

.benefits-alternate {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.benefits-image {
    flex: 1;
    padding-right: 4rem;
}

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

.benefits-content {
    flex: 1;
}

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

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

.benefits-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    font-size: 1.1rem;
    position: relative;
}

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

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

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-light);
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    opacity: 0.85;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-cookie-accept {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-cookie-accept:hover {
    background-color: var(--primary-color);
}

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

.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(--text-light);
    padding: 5rem 2rem;
    text-align: center;
}

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

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

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

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

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

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #444;
}

.about-image {
    flex: 1;
}

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

.values-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

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

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

.value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.experience-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.exp-image {
    flex: 1;
    padding-left: 2rem;
}

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

.exp-content {
    flex: 1;
    max-width: 650px;
    padding: 0 4rem 0 2rem;
}

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

.exp-list {
    margin-bottom: 1.5rem;
}

.exp-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    font-size: 1.1rem;
    position: relative;
}

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

.exp-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.team-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.team-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #444;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.team-areas {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.area-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

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

.area-card p {
    font-size: 1.05rem;
    color: #555;
}

.certifications {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    margin: 4rem 0;
}

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

.cert-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cert-item h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.cert-item p {
    font-size: 1rem;
    color: #666;
}

.services-intro {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background-color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-header {
    background-color: var(--bg-light);
    padding: 2rem;
    border-bottom: 3px solid var(--secondary-color);
}

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

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

.service-body {
    padding: 2rem;
}

.service-body p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    font-size: 1rem;
    position: relative;
    color: #444;
}

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

.service-footer {
    padding: 0 2rem 2rem;
}

.btn-service {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

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

.additional-info-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

.info-content p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #444;
}

.info-list {
    margin: 1.5rem 0;
}

.info-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    font-size: 1.1rem;
    position: relative;
}

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

.info-image {
    flex: 1;
}

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

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

.contact-info {
    flex: 1;
}

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

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

.contact-block h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.contact-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

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

.contact-block a:hover {
    color: var(--primary-color);
}

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

.contact-map img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 77, 46, 0.95), transparent);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 0 0 8px 8px;
}

.map-overlay p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-offices {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

.office-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.office-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.faq-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

.faq-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.legal-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container {
    background-color: var(--text-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-container ul li {
    list-style: disc;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--primary-color);
}

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    color: var(--text-light);
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-info {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.service-info p {
    font-size: 1.15rem;
}

#service-name {
    font-weight: 700;
    color: var(--accent-color);
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.next-steps {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.next-steps h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.step-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

.benefit-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.benefit-item p {
    font-size: 1.05rem;
    color: #555;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--text-light);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-split,
    .intro-alternate,
    .services-preview-split,
    .technology-split,
    .process-split,
    .benefits-alternate,
    .about-split,
    .experience-split,
    .additional-info-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-text,
    .intro-content,
    .services-text,
    .tech-content,
    .process-content,
    .benefits-content,
    .about-content,
    .exp-content,
    .info-content,
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .intro-image,
    .tech-image,
    .exp-image {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

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

    .intro-content h2,
    .services-text h2,
    .tech-content h2,
    .process-content h2,
    .about-content h2 {
        font-size: 1.8rem;
    }

    .stats-section {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .form-container h2 {
        font-size: 2rem;
    }

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

    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
}