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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2e6f95;
    --accent-color: #d4a574;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #c99563;
}

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

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

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

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-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(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-split,
.intro-split,
.trust-indicators,
.final-cta,
.about-split,
.process-split,
.commitment-split,
.contact-split {
    display: flex;
    min-height: 500px;
}

.hero-split > div,
.intro-split > div,
.trust-indicators > div,
.final-cta > div,
.about-split > div,
.process-split > div,
.commitment-split > div,
.contact-split > div {
    flex: 1;
    min-width: 300px;
}

.hero-content,
.intro-content,
.trust-content,
.cta-content,
.about-content,
.process-content,
.commitment-content,
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-visual,
.intro-visual,
.trust-visual,
.cta-visual,
.about-visual,
.process-visual,
.commitment-visual,
.contact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual img,
.intro-visual img,
.trust-visual img,
.cta-visual img,
.about-visual img,
.process-visual img,
.commitment-visual img,
.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.intro-content h2,
.trust-content h2,
.cta-content h2,
.about-content h2,
.process-content h2,
.commitment-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-content p,
.trust-content p,
.cta-content p,
.about-content p,
.process-content p,
.commitment-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.cta-primary,
.btn-submit {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.inline-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.value-proposition {
    padding: 100px 30px;
    background: var(--bg-white);
}

.value-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.value-header h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.services-showcase {
    padding: 80px 30px;
    background: var(--bg-light);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 20px;
    color: var(--text-light);
}

.service-item {
    max-width: 1400px;
    margin: 0 auto 60px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.split-layout {
    display: flex;
}

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

.service-details,
.service-image {
    flex: 1;
    min-width: 300px;
}

.service-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-details > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

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

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

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

.price-unit {
    font-size: 16px;
    color: var(--text-light);
}

.cta-service {
    padding: 14px 35px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-service:hover {
    background: #c99563;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.service-image {
    overflow: hidden;
}

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

.trust-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.testimonials-section {
    padding: 100px 30px;
    background: var(--bg-white);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.testimonial-card p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.quote-form-section {
    padding: 100px 30px;
    background: var(--primary-color);
}

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

.form-container h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 50px;
}

.quote-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta button {
    padding: 16px 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background: #c99563;
    transform: translateY(-3px);
}

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 30px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero {
    padding: 120px 30px 80px;
    text-align: center;
    background: var(--bg-light);
}

.page-hero h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.values-section {
    padding: 100px 30px;
    background: var(--bg-white);
}

.values-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.team-section {
    padding: 80px 30px;
    background: var(--bg-light);
    max-width: 900px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.team-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 60px 30px;
}

.service-block {
    max-width: 1400px;
    margin: 0 auto 80px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.service-info,
.service-img {
    flex: 1;
    min-width: 300px;
}

.service-info {
    padding: 60px;
}

.service-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

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

.service-info ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--secondary-color);
    font-size: 20px;
}

.pricing-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.service-img {
    overflow: hidden;
}

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

.service-cta {
    padding: 100px 30px;
    background: var(--bg-light);
    text-align: center;
}

.service-cta h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-block {
    margin-bottom: 40px;
}

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

.info-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--secondary-color);
    font-weight: 600;
}

.response-info {
    padding: 100px 30px;
    background: var(--bg-white);
}

.response-info h2 {
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.emergency-section {
    padding: 80px 30px;
    background: var(--accent-color);
    text-align: center;
}

.emergency-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.emergency-section p {
    font-size: 18px;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-hero {
    padding: 120px 30px;
    background: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-content > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

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

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

.step-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

.thanks-info {
    padding: 80px 30px;
    background: var(--bg-white);
    text-align: center;
}

.thanks-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-links a {
    padding: 12px 30px;
    background: var(--bg-light);
    color: var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-links a:hover {
    background: var(--secondary-color);
    color: white;
}

.legal-page {
    padding: 80px 30px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
}

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

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

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

.cookies-table th {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

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

@media (max-width: 968px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links a {
        padding: 20px 30px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .trust-indicators,
    .final-cta,
    .about-split,
    .process-split,
    .commitment-split,
    .contact-split,
    .split-layout {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .trust-content,
    .cta-content,
    .about-content,
    .process-content,
    .commitment-content,
    .contact-info {
        padding: 60px 30px;
    }

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

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

    .service-details,
    .service-info {
        padding: 40px 30px;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta button {
        padding: 14px 24px;
        font-size: 14px;
    }

    .quote-form {
        padding: 35px 25px;
    }

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

    .cookie-content p {
        min-width: auto;
    }
}

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

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

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

    .value-grid,
    .testimonials-grid,
    .values-grid,
    .process-steps {
        flex-direction: column;
    }

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

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

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