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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a73e8;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f9fa;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #667eea;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.intro-image {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    background: #f8f9fa;
    padding: 80px 40px;
}

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #ddd;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px;
    margin-bottom: 20px;
    color: #666;
}

.service-card .price {
    display: block;
    padding: 0 24px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

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

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: flex-start;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step p {
    color: #666;
}

.process-image {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.benefits {
    padding: 80px 40px;
    background: #ffffff;
}

.benefits h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-image {
    flex: 1;
    background: #ddd;
}

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

.testimonials-content {
    flex: 1;
    padding: 60px 40px;
}

.testimonials-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonial {
    margin-bottom: 32px;
    padding: 24px;
    background: #ffffff;
    border-left: 4px solid #667eea;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 12px;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 14px;
}

.booking-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.booking-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 16px;
    color: #ffffff;
}

.booking-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    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;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
}

.coverage-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.coverage-content {
    flex: 1;
}

.coverage-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.coverage-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.coverage-image {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-text {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: #5568d3;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 18px;
}

.footer-section p {
    line-height: 1.8;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom .disclaimer {
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #6c7a7b;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 40px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-image {
    flex: 1;
    background: #ddd;
}

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

.values-content {
    flex: 1;
    padding: 60px 40px;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 80px 40px;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #666;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.team-card p {
    color: #666;
    line-height: 1.7;
}

.equipment-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.equipment-content {
    flex: 1;
}

.equipment-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.equipment-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

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

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

.commitment {
    padding: 80px 40px;
    background: #f8f9fa;
    text-align: center;
}

.commitment h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.commitment p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.cta-about {
    padding: 80px 40px;
    background: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.services-intro-content {
    flex: 1;
}

.services-intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.services-intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.services-intro-image {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-list {
    padding: 60px 40px;
    background: #ffffff;
}

.services-list h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 80px;
    color: #2c3e50;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.8;
}

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
}

.cta-service {
    display: inline-block;
    padding: 14px 32px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-service:hover {
    background: #5568d3;
}

.service-detail-image {
    flex: 1;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
}

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

.service-notes {
    padding: 80px 40px;
    background: #f8f9fa;
}

.service-notes h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.notes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.note-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.note-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.note-card p {
    color: #666;
    line-height: 1.7;
}

.cta-services {
    padding: 80px 40px;
    text-align: center;
    background: #ffffff;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.info-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-areas {
    padding: 80px 40px;
    background: #f8f9fa;
}

.service-areas h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.areas-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #666;
}

.areas-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.area-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.area-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.area-card p {
    color: #666;
    line-height: 1.7;
}

.coverage-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-style: italic;
}

.faq-section {
    padding: 80px 40px;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 32px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.cta-contact {
    padding: 80px 40px;
    text-align: center;
    background: #f8f9fa;
}

.cta-contact h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-contact p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
}

.thanks-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    text-align: center;
}

.thanks-lead {
    font-size: 22px;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.95;
}

.confirmation-box {
    background: #ffffff;
    color: #2c3e50;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.confirmation-box h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #27ae60;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    color: #666;
    line-height: 1.7;
}

.booking-reference {
    background: rgba(255,255,255,0.2);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.booking-reference p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.preparation-tips {
    padding: 80px 40px;
    background: #ffffff;
}

.preparation-tips h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.tips-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.tip-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.tip-card p {
    color: #666;
    line-height: 1.7;
}

.thanks-additional {
    padding: 60px 40px;
    background: #f8f9fa;
    text-align: center;
}

.thanks-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-additional p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #666;
}

.contact-quick {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
}

.contact-quick p {
    margin-bottom: 10px;
    color: #555;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.update-date {
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid #667eea;
}

.legal-content a:hover {
    color: #5568d3;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .testimonials-split,
    .coverage-split,
    .about-split,
    .values-split,
    .equipment-split,
    .services-intro-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .testimonials-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

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

    .form-row {
        flex-direction: column;
    }

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