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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background: #357abd;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Navigation */
.navigation {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: none;
    gap: 35px;
}

.nav-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    transition: color 0.3s ease;
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #1a1a1a;
}

/* Hero Split */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left {
    background: #f8f9fa;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #555555;
}

.hero-right {
    height: 400px;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary,
.btn-primary,
.btn-large {
    background: #4a90e2;
    color: #ffffff;
}

.cta-primary:hover,
.btn-primary:hover,
.btn-large:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.cta-secondary,
.btn-secondary {
    background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: #4a90e2;
    color: #ffffff;
}

/* Trust Indicators */
.trust-indicators {
    padding: 50px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.indicators-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.indicator {
    text-align: center;
}

.indicator-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 8px;
}

.indicator-label {
    display: block;
    font-size: 16px;
    color: #666666;
}

/* Split Layout */
.split-layout {
    display: flex;
    flex-direction: column;
}

.split-layout.reverse {
    flex-direction: column;
}

.split-content {
    padding: 60px 20px;
}

.split-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.split-image {
    height: 350px;
    overflow: hidden;
}

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

/* Problem Section */
.problem-section {
    background: #f8f9fa;
}

.problem-list {
    margin: 24px 0;
    padding-left: 0;
}

.problem-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    color: #555555;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

.highlight-text {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 18px;
    margin-top: 24px;
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
    background: #ffffff;
}

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

.section-header-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #666666;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

.service-card-split {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-visual {
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px 20px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
    display: block;
}

.btn-select-service {
    padding: 14px 28px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #333333;
    transform: translateY(-2px);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.section-title-left {
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 16px;
    display: block;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: #666666;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: #ffffff;
}

.centered-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-large,
.benefit-small {
    background: #f8f9fa;
    padding: 32px 24px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.benefit-large h3,
.benefit-small h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-large p,
.benefit-small p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

/* CTA Form Section */
.cta-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.form-left p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #f0f0f0;
}

.form-benefits {
    padding-left: 0;
}

.form-benefits li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 32px;
    background: #4a90e2;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #357abd;
}

/* Safety Section */
.safety-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.safety-content-centered h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.safety-content-centered p {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
}

.safety-image {
    width: 100%;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p,
.footer-column ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 20px;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

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

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

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

.service-detail-content {
    padding: 40px 20px;
    background: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #1a1a1a;
}

.service-detail-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    padding: 6px 0;
    font-size: 16px;
    color: #555555;
    list-style: disc;
}

.price-highlight {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin: 24px 0;
    display: block;
}

/* Additional Services */
.additional-services {
    padding: 80px 20px;
    background: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-card {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.additional-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.additional-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 12px;
}

.additional-price {
    font-size: 18px;
    font-weight: 600;
    color: #4a90e2;
}

/* CTA Section Simple */
.cta-section-simple {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-section-simple h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-section-simple p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
}

/* About Page Specific */
.about-intro-split {
    background: #ffffff;
}

.values-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* Timeline */
.timeline-section {
    padding: 80px 20px;
    background: #ffffff;
}

.timeline-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #666666;
}

/* Certifications */
.certifications-section {
    padding: 80px 0;
    background: #ffffff;
}

.cert-list {
    padding-left: 20px;
    margin: 24px 0;
}

.cert-list li {
    padding: 8px 0;
    font-size: 16px;
    color: #555555;
    list-style: disc;
}

/* Manufacturing Section */
.manufacturing-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.centered-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
}

.manufacturing-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

/* Approach Section */
.approach-section {
    padding: 80px 20px;
    background: #ffffff;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    background: #f8f9fa;
    padding: 30px 24px;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* Contact Page */
.contact-main {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

.contact-block a {
    color: #4a90e2;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
}

/* Contact Additional */
.contact-additional {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-additional h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* Departments */
.contact-departments {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-departments h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.departments-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.department-card {
    background: #f8f9fa;
    padding: 30px 24px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.department-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.department-card p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 8px;
}

.department-card a {
    color: #4a90e2;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 20px;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4ade80;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
}

.thanks-info {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 16px;
    color: #1a1a1a;
}

.selected-service strong {
    color: #4a90e2;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.step {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.step p {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.thanks-contact {
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 8px;
}

.thanks-contact a {
    color: #4a90e2;
    font-weight: 600;
}

/* Legal Page */
.legal-page {
    padding: 80px 20px;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-update {
    font-size: 14px;
    color: #888888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333333;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #4a90e2;
    margin-bottom: 32px;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

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

    .hero-left {
        padding: 80px 60px;
    }

    .hero-right {
        height: auto;
    }

    .indicators-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .split-layout {
        flex-direction: row;
    }

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

    .split-content,
    .split-image {
        flex: 1;
    }

    .split-content {
        padding: 80px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-card-split {
        flex-direction: row;
    }

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

    .service-visual {
        flex: 0 0 45%;
        height: auto;
    }

    .service-info {
        flex: 1;
        padding: 40px;
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 20px);
    }

    .benefits-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-large {
        flex: 0 0 calc(60% - 12px);
    }

    .benefit-small {
        flex: 0 0 calc(40% - 12px);
    }

    .form-container-split {
        flex-direction: row;
        align-items: center;
    }

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

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

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

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

    .service-detail-image {
        flex: 0 0 45%;
        height: auto;
    }

    .service-detail-content {
        flex: 1;
        padding: 60px 50px;
    }

    .additional-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .additional-card {
        flex: 0 0 calc(50% - 12px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .team-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 0 0 calc(50% - 12px);
    }

    .contact-split {
        flex-direction: row;
    }

    .contact-info-side,
    .contact-map-side {
        flex: 1;
    }

    .map-placeholder {
        height: 600px;
    }

    .info-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .departments-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .department-card {
        flex: 0 0 calc(50% - 12px);
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 0 0 calc(50% - 12px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .next-steps {
        flex-direction: row;
        text-align: center;
    }

    .step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 0 0 30%;
    }
}

/* Desktop Large */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .process-step {
        flex: 0 0 calc(25% - 30px);
    }

    .value-card {
        flex: 0 0 calc(25% - 22.5px);
    }

    .stat-box {
        flex: 0 0 calc(25% - 18px);
    }

    .approach-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item {
        flex: 0 0 calc(50% - 15px);
    }
}