* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-links a:hover {
    color: #3498db;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #1a252f;
}

.intro-section {
    max-width: 840px;
    margin: 100px auto;
    padding: 0 40px;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-preview-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.services-preview-split.reverse {
    flex-direction: row-reverse;
}

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e8eef3;
}

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

.service-info-right,
.service-info-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-info-right h3,
.service-info-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info-right p,
.service-info-left p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a5568;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 28px;
}

.testimonials-section {
    background-color: #2c3e50;
    padding: 80px 40px;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 8px;
    max-width: 360px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

.form-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #4a5568;
    font-size: 17px;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

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

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

.disclaimer-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 40px;
    background-color: #fffbea;
    border-left: 4px solid #f59e0b;
}

.disclaimer-section p {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    color: #9ca3af;
    font-size: 15px;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 20px;
    color: #bdc3c7;
}

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

.about-content {
    flex: 1;
}

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

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.values-grid {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
}

.team-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro {
    font-size: 18px;
    margin-bottom: 60px;
    color: #4a5568;
    max-width: 800px;
}

.team-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #e8eef3;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.equipment-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.equipment-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.equipment-text {
    flex: 1;
}

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

.equipment-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.equipment-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.cta-about {
    text-align: center;
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

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

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 80px;
    padding: 0 40px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8eef3;
}

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

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

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

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a5568;
}

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

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.cta-service {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-service:hover {
    background-color: #2980b9;
}

.comparison-note {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #f8f9fa;
    text-align: center;
    border-radius: 8px;
}

.comparison-note h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.comparison-note p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #4a5568;
}

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

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.email-display {
    color: #3498db;
    font-weight: 600;
}

.contact-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.directions-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.directions-content {
    display: flex;
    gap: 40px;
}

.direction-item {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.direction-item p {
    font-size: 16px;
    color: #4a5568;
}

.cta-contact {
    text-align: center;
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

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

.thanks-section {
    min-height: 600px;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 16px;
    color: #4a5568;
}

.thanks-service {
    font-size: 17px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 60px;
}

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

.next-steps {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    text-align: left;
}

.step {
    flex: 1;
    padding: 28px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3498db;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.step p {
    font-size: 16px;
    color: #4a5568;
}

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

.legal-page {
    min-height: 600px;
    padding: 60px 40px;
}

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

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

.legal-updated {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    margin-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 968px) {
    .hero-split,
    .services-preview-split,
    .about-split,
    .team-split,
    .equipment-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .services-preview-split.reverse,
    .equipment-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .values-grid,
    .testimonials-grid,
    .next-steps,
    .directions-content,
    .footer-content {
        flex-direction: column;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }
}