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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

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

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

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

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

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    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-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: var(--white);
}

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

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

.intro-asymmetric {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text-block {
    flex: 2;
}

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

.intro-text-block p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

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

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.services-grid {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header-centered p {
    font-size: 1.125rem;
    color: #666;
}

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

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 5px;
}

.price-label {
    font-size: 0.875rem;
    color: #666;
}

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

.price-unit {
    font-size: 1rem;
    color: #666;
}

.btn-select-service {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
}

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

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

.safety-content {
    flex: 1;
}

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

.safety-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

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

.safety-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.testimonials-offset {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.testimonials-offset h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    opacity: 0.8;
}

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

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

.form-left-content {
    flex: 1;
}

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

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

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

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

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.875rem;
    color: #666;
    cursor: pointer;
}

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

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

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

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

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

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

.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.8);
    transition: color 0.3s ease;
}

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

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

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

.sticky-cta-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px 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;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

.story-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

.cert-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cert-content {
    flex: 1.5;
}

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

.cert-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

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

.cert-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

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

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

.team-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.team-stat {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-big {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-desc {
    display: block;
    color: #666;
    font-size: 1rem;
}

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

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

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

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

.equipment-content {
    flex: 1;
}

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

.equipment-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

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

.cta-bottom {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content-center p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.cta-content-center .cta-primary:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}

.service-detail-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

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

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

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

.service-lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

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

.service-price-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.service-price-box .price-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-price-box .price-big {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.process-section {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

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

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

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

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

.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

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

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    font-style: italic;
    color: #888;
}

.contact-map {
    flex: 1;
}

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

.contact-map p {
    color: #555;
    margin-bottom: 1.5rem;
}

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

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

.coverage-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.map-placeholder {
    overflow: hidden;
    border-radius: 8px;
    margin-top: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

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

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

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.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 {
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-service {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-next-steps {
    margin: 4rem 0;
    text-align: left;
}

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

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

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

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

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

.thanks-contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-contact-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

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

.legal-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 3rem;
}

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

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

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

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

.legal-container ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.gdpr-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.gdpr-table th,
.gdpr-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table tbody tr:nth-child(even) {
    background: var(--light-bg);
}

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

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

    .intro-asymmetric {
        flex-direction: column;
    }

    .safety-split,
    .story-container,
    .cert-container,
    .equipment-split,
    .service-detail,
    .contact-container,
    .form-container-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .nav-menu {
        gap: 1rem;
    }

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

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

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

    .thanks-cta {
        flex-direction: column;
    }
}