/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

/* Navigation */
.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #f39c12;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f39c12;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 0 20px;
    }

    .nav-menu li a {
        display: block;
        padding: 0.75rem 0;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 2rem 20px;
    color: #ffffff;
}

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

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

.hero-visual {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Buttons and CTAs */
.cta-primary,
.btn-primary {
    display: inline-block;
    background-color: #f39c12;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

.cta-accent {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-accent:hover {
    background-color: #229954;
}

.cta-outline {
    display: inline-block;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background-color: #3498db;
    color: #ffffff;
}

.link-underline {
    color: #3498db;
    text-decoration: underline;
    font-weight: 500;
}

.link-underline:hover {
    color: #2980b9;
}

/* Trust Section */
.trust-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555555;
    max-width: 200px;
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555555;
    line-height: 1.8;
}

/* Services Preview */
.services-preview {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.services-preview h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #666666;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    margin: 0 1.5rem 1rem;
}

.service-card .btn-secondary {
    margin: 0 1.5rem 1.5rem;
    text-align: center;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Process Section */
.process-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.process-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.step {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step p {
    color: #666666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.testimonials-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.testimonial .author {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.benefits-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.benefits-visual {
    flex: 1;
    min-width: 300px;
}

.benefits-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefits-content {
    flex: 1;
    min-width: 300px;
}

.benefits-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.benefits-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #555555;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Coverage Section */
.coverage-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.coverage-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.coverage-section p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555555;
    line-height: 1.8;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
}

.form-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.form-intro {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.order-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #667eea;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.95rem;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

/* Final CTA Section */
.final-cta-section {
    background-color: #2c3e50;
    padding: 4rem 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.1rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-col p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #999999;
}

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

.sticky-btn {
    background-color: #f39c12;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #c0392b;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

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

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

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1rem;
    color: #555555;
    line-height: 1.8;
}

.service-detail-content strong {
    color: #2c3e50;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Pricing Info */
.pricing-info {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.pricing-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.pricing-info p {
    margin-bottom: 1rem;
    color: #555555;
    line-height: 1.8;
}

.pricing-info ul {
    margin: 1rem 0 1.5rem 2rem;
}

.pricing-info ul li {
    list-style: disc;
    color: #555555;
    margin-bottom: 0.5rem;
}

/* CTA Services */
.cta-services {
    background-color: #667eea;
    padding: 4rem 0;
    text-align: center;
}

.cta-services h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* About Sections */
.about-story {
    padding: 4rem 0;
}

.about-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: #555555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.values-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f39c12;
}

.value-item p {
    color: #555555;
    line-height: 1.6;
}

/* Numbers Section */
.numbers-section {
    padding: 4rem 0;
}

.numbers-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.number-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 180px;
}

.big-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1rem;
    color: #555555;
    text-align: center;
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.team-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-intro {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555555;
    line-height: 1.8;
}

.team-section p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
}

/* Certificates Section */
.certificates-section {
    padding: 4rem 0;
}

.certificates-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.certificates-section p {
    margin-bottom: 1rem;
    color: #555555;
    line-height: 1.8;
}

.certificates-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.certificates-section ul li {
    list-style: disc;
    color: #555555;
    margin-bottom: 0.5rem;
}

/* Environment Section */
.environment-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.environment-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.environment-image {
    flex: 1;
    min-width: 300px;
}

.environment-image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.environment-text {
    flex: 1;
    min-width: 300px;
}

.environment-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.environment-text p {
    margin-bottom: 1.25rem;
    color: #555555;
    line-height: 1.8;
}

/* CTA About */
.cta-about {
    background-color: #667eea;
    padding: 4rem 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* Contact Sections */
.contact-content {
    padding: 4rem 0;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f39c12;
}

.contact-item p {
    color: #555555;
    line-height: 1.8;
}

.contact-item a {
    color: #3498db;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.map-placeholder {
    position: relative;
}

.map-placeholder img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

/* Contact FAQ */
.contact-faq {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.contact-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555555;
    line-height: 1.8;
}

/* CTA Contact */
.cta-contact {
    background-color: #667eea;
    padding: 4rem 0;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-contact a {
    color: #f39c12;
    text-decoration: underline;
    font-weight: 600;
}

/* Thanks Section */
.thanks-section {
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #555555;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-info ol {
    margin: 1rem 0 1rem 1.5rem;
}

.thanks-info ol li {
    margin-bottom: 0.75rem;
    color: #555555;
    line-height: 1.8;
}

.service-selected {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #e8f5e9;
    border-radius: 6px;
    color: #27ae60;
}

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

.thanks-contact {
    margin-top: 2rem;
    color: #666666;
}

.thanks-contact a {
    color: #3498db;
    text-decoration: underline;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #555555;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #555555;
    line-height: 1.8;
}

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

.legal-content ul li {
    list-style: disc;
    color: #555555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content strong {
    color: #2c3e50;
}

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

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

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

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

    .process-steps {
        flex-direction: column;
    }

    .benefits-split,
    .about-split,
    .environment-split {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }

    .big-number {
        font-size: 2.5rem;
    }

    .order-form {
        padding: 1.5rem;
    }
}