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

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --dark: #1f1f1f;
    --gray: #5f6368;
    --light-gray: #f8f9fa;
    --border: #dadce0;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

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

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

.container-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

.centered-content {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px var(--shadow);
    display: none;
}

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

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

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

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

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

.btn-cookie {
    background: var(--primary-color);
    color: var(--white);
}

.btn-cookie:hover {
    background: #1557b0;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.navbar {
    background: var(--white);
    box-shadow: 0 2px 4px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.nav-active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

.hero-lead {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-submit {
    background: var(--secondary-color);
    color: var(--white);
    width: 100%;
}

.btn-submit:hover {
    background: #2d8e47;
}

.info-section {
    background: var(--white);
}

.section-title {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.section-title.centered {
    text-align: center;
}

.features-grid {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

.feature-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
}

.services-showcase {
    background: var(--white);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.service-item {
    padding: 24px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-item p {
    color: var(--gray);
    margin-bottom: 12px;
}

.price {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.process-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step p {
    color: var(--gray);
}

.cta-section,
.cta-section-alt {
    padding: 80px 20px;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

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

.cta-section-alt {
    background: var(--white);
}

.testimonials-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.testimonial-card {
    flex: 1;
    background: var(--light-gray);
    padding: 32px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray);
}

.form-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

.form-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 48px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--white);
}

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

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

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

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

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

.values-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--gray);
}

.team-section {
    padding: 80px 0;
    background: var(--white);
}

.equipment-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.equipment-item {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
}

.equipment-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.equipment-item p {
    color: var(--gray);
}

.services-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.services-detail-section.gray-bg {
    background: var(--light-gray);
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.price-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.price-label {
    font-size: 14px;
    color: var(--gray);
    margin-right: 8px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.color-section {
    padding: 80px 20px;
    background: var(--white);
}

.section-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.color-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.color-item {
    text-align: center;
}

.color-sample {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px var(--shadow);
}

.color-item span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.color-note {
    text-align: center;
    color: var(--gray);
    margin-top: 48px;
    font-style: italic;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

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

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

.contact-icon {
    font-size: 32px;
}

.contact-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--gray);
}

.contact-text a {
    color: var(--primary-color);
}

.contact-note {
    margin-top: 32px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 8px;
}

.map-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

.direction-item {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.direction-item p {
    color: var(--gray);
}

.faq-section {
    padding: 80px 20px;
    background: var(--white);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray);
}

.thanks-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 32px;
}

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.thanks-service {
    margin-bottom: 48px;
}

.selected-service {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 8px;
    display: inline-block;
}

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

.next-steps-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.step-card {
    flex: 1;
    background: var(--light-gray);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray);
}

.info-section-alt {
    padding: 80px 20px;
    background: var(--light-gray);
}

.info-cards {
    display: flex;
    gap: 30px;
    margin-top: 48px;
}

.info-card {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content {
    padding: 80px 20px;
    background: var(--white);
}

.legal-intro {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 48px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 8px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    padding-left: 40px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 27px var(--shadow);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 20px;
    }

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

    .hero-lead {
        font-size: 16px;
    }

    .container-split {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

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

    .features-wrapper {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

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

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

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

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

    .color-grid {
        gap: 15px;
    }

    .color-sample {
        width: 80px;
        height: 80px;
    }

    .map-directions {
        flex-direction: column;
    }

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

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

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

    .page-header h1 {
        font-size: 32px;
    }

    .thanks-section h1 {
        font-size: 32px;
    }
}