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

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

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

.container-fluid {
    width: 100%;
    padding: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie:first-child {
    background-color: #4CAF50;
    color: #fff;
}

.btn-cookie:first-child:hover {
    background-color: #45a049;
}

.btn-cookie:last-child {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie:last-child:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.nav a:hover {
    color: #4CAF50;
}

.ad-label {
    background-color: #ff9800;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #4CAF50;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #4CAF50;
    color: #fff;
}

.btn-link {
    display: inline-block;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #45a049;
    text-decoration: underline;
}

.intro-section {
    padding: 80px 0;
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.services-preview {
    padding: 80px 0;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #666;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 20px 20px;
}

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

.form-section {
    padding: 80px 0;
    background-color: #fff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
}

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

.trust-section {
    padding: 80px 0;
}

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

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

.trust-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 16px;
    color: #666;
}

.image-content-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.split-text {
    flex: 1 1 45%;
    min-width: 300px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.split-image {
    flex: 1 1 45%;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.final-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #f5f5f5;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.8;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.page-header {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

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

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

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #666;
}

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

.service-detail-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #666;
}

.price-large {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin: 20px 0;
}

.note {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.service-detail-image {
    flex: 1 1 40%;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-intro {
    padding: 80px 0;
}

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.about-image-section {
    padding: 60px 0;
}

.about-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-values {
    padding: 80px 0;
}

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

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

.value-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #666;
}

.about-process {
    padding: 80px 0;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 15px;
    color: #666;
}

.about-equipment {
    padding: 80px 0;
}

.about-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #f5f5f5;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-block {
    flex: 1 1 calc(33.333% - 34px);
    min-width: 250px;
}

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

.contact-block p {
    font-size: 16px;
    color: #666;
}

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

.contact-image-section {
    padding: 60px 0;
}

.contact-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-directions {
    padding: 80px 0;
}

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

.directions-content {
    max-width: 800px;
    margin: 0 auto;
}

.directions-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.contact-faq {
    padding: 80px 0;
}

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

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

.faq-item {
    margin-bottom: 35px;
}

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

.faq-item p {
    font-size: 16px;
    color: #666;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.thanks-content {
    flex: 1 1 55%;
    min-width: 300px;
}

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

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

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thanks-image-wrapper {
    flex: 1 1 35%;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
}

.thanks-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.next-steps {
    padding: 80px 0;
}

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

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

.step-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    border-radius: 50%;
}

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

.step-item p {
    font-size: 15px;
    color: #666;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0 20px 25px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.legal-page a {
    color: #4CAF50;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.update-date {
    margin-top: 50px;
    font-style: italic;
    color: #999;
}

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

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

.gdpr-table th,
.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.gdpr-table td,
.cookie-table td {
    color: #666;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

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

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

    .trust-item,
    .value-item,
    .contact-block,
    .step-item {
        flex: 1 1 100%;
    }

    .split-content,
    .service-detail-block {
        flex-direction: column;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

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