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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #e85d04;
    --accent-color: #faa307;
    --dark-text: #2b2d42;
    --light-text: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.main-nav {
    background-color: var(--bg-white);
    box-shadow: 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;
    position: relative;
}

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

.ad-disclosure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--light-text);
    background-color: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
}

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

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 3px 0;
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

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

.btn-cookie.accept:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 77, 122, 0.85), rgba(26, 77, 122, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    padding: 0 20px;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d55004;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.intro-section h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.intro-section p {
    font-size: 1.125rem;
    color: var(--light-text);
    line-height: 1.8;
}

.services-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-text);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
}

.service-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.service-info p {
    color: var(--light-text);
    margin-bottom: 16px;
    flex: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #154263;
    transform: translateY(-2px);
}

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

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

.form-intro {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d55004;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.why-us-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.why-us-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-final .cta-button {
    background-color: var(--secondary-color);
}

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

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-intro img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 40px;
    background-color: var(--bg-light);
}

.about-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

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

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

.values-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
}

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

.equipment-section h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

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

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

.cta-about h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-detail {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.price-tag {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    background-color: rgba(232, 93, 4, 0.1);
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--dark-text);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.contact-content {
    padding: 60px 0;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
}

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

.info-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark-text);
}

.email-display {
    color: var(--dark-text);
    font-weight: 600;
}

.info-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-note p {
    color: var(--light-text);
    line-height: 1.6;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
}

.directions-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.directions-section h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.directions-section > .container-narrow > p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 40px;
}

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

.direction-item {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.direction-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-cta {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.contact-cta p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 40px;
}

.email-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.email-display-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 12px;
    color: var(--light-text);
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 60px 0 80px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.last-updated {
    color: var(--light-text);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.375rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--light-text);
}

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

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--light-text);
}

.legal-page strong {
    color: var(--dark-text);
}

.legal-page span {
    color: var(--dark-text);
}

@media (max-width: 968px) {
    .ad-disclosure {
        position: static;
        transform: none;
        order: -1;
        width: 100%;
        text-align: center;
        padding: 8px;
        border-radius: 0;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1.125rem;
    }

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

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

    .benefits-layout {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

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

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

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

    .contact-layout {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

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

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 14px 30px;
    }

    .cookie-banner {
        padding: 15px;
    }
}