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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d32f2f;
    --text-color: #333;
    --text-light: #666;
    --background: #ffffff;
    --background-alt: #f8f8f8;
    --border-color: #e0e0e0;
    --success-color: #2e7d32;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    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 {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.cookie-btn.accept {
    background: var(--secondary-color);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #b71c1c;
}

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

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

.header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 8px;
    background: var(--background-alt);
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-section {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

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

.hero-text {
    color: #fff;
    max-width: 600px;
}

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

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
}

.intro-block {
    padding: 80px 0;
    background: var(--background-alt);
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
}

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 200px;
    background-color: var(--background-alt);
    background-size: cover;
    background-position: center;
}

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

.service-card p {
    margin: 0 20px 15px;
    color: var(--text-light);
    font-size: 15px;
}

.service-price {
    margin: 0 20px 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #000;
}

.form-section {
    padding: 80px 0;
    background: var(--background-alt);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.form-wrapper p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 500;
    font-size: 14px;
}

.form-field input,
.form-field textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-field input[readonly] {
    background: var(--background-alt);
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 24px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #b71c1c;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

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

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background: var(--background-alt);
}

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

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fff9e6;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0 30px;
}

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.page-hero {
    padding: 80px 0 60px;
    background: var(--background-alt);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-light);
}

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

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    height: 400px;
    background-color: var(--background-alt);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.mission-section {
    padding: 80px 0;
    background: var(--background-alt);
}

.mission-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.mission-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.approach-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.approach-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.equipment-section {
    padding: 80px 0;
    background: var(--background-alt);
}

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

.equipment-text {
    flex: 1;
}

.equipment-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.equipment-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.equipment-image {
    flex: 1;
    height: 400px;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.values-detail-section {
    padding: 80px 0;
}

.values-detail-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-detail h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.value-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #b71c1c;
}

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

.service-detail-card {
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 28px;
    flex: 1;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-detail-image {
    width: 100%;
    height: 300px;
    background-color: var(--background-alt);
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
    border-radius: 8px;
}

.service-detail-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-light);
}

.service-features {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-light);
}

.pricing-note {
    padding: 40px 0 80px;
}

.pricing-note p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    padding: 20px;
    background: var(--background-alt);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-main {
    flex: 1.5;
}

.contact-main h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    height: 400px;
    background-color: var(--background-alt);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.location-section {
    padding: 80px 0;
    background: var(--background-alt);
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.location-section p {
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: center;
}

.directions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.direction-item p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

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

.contact-notes h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.notes-list {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 20px;
}

.notes-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-light);
}

.service-confirmation {
    padding: 20px;
    background: var(--background-alt);
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--text-color);
}

.thanks-note {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.next-steps {
    padding: 80px 0;
    background: var(--background-alt);
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-reminder h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.contact-reminder p {
    text-align: center;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content {
    padding: 60px 0 80px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

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

.cookie-table th {
    background: var(--background-alt);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .about-layout,
    .equipment-layout,
    .contact-layout {
        flex-direction: column;
    }

    .about-image,
    .equipment-image,
    .contact-image {
        height: 300px;
    }

    .approach-item {
        min-width: 100%;
    }

    .values-grid {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}