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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e67e22;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #27ae60;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-weight: 500;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    padding: var(--spacing-lg) var(--spacing-md);
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.intro-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-color);
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
}

.content-left, .content-right {
    flex: 1;
}

.content-left h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

.services-highlight {
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-alt {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.label {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: var(--spacing-md);
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    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 10px 30px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #555;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-service {
    display: block;
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #234a5f;
}

.trust-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
}

.trust-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.trust-left {
    flex: 1;
}

.trust-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.trust-right {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
}

.trust-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.trust-list {
    list-style: none;
    margin: 2rem 0;
}

.trust-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-color);
}

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

.testimonial-container h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.testimonials-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    font-size: 0.9rem;
}

.process-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #fff;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

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

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-color);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.form-intro h2 {
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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(--primary-color);
}

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

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

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #234a5f;
}

.btn-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-sticky-section {
    position: sticky;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    padding: 1rem 2rem;
    z-index: 100;
}

.cta-sticky {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cta-sticky span {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.75rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-sticky:hover {
    background: #cf6d1a;
}

.footer {
    background: var(--dark-color);
    color: #fff;
    padding: var(--spacing-lg) var(--spacing-md);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col a {
    display: block;
    color: #ccc;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #1a3f54);
    color: #fff;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.service-item-split {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
}

.price-label {
    font-weight: 600;
    color: #555;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-color);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-story {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #fff;
}

.story-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-color);
}

.values-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #fff;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.team-content {
    flex: 1;
}

.approach-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-color);
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-content h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    display: flex;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.approach-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.approach-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-main {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #fff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-detail-item {
    margin-bottom: 2rem;
}

.contact-detail-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-detail-item a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-note {
    padding: 1.5rem;
    background: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.areas-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-color);
}

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

.areas-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.area-item {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-weight: 500;
}

.areas-note {
    margin-top: 2rem;
    color: #555;
    font-size: 0.95rem;
}

.thanks-section {
    padding: var(--spacing-xl) var(--spacing-md);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.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: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-service {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 1.5rem;
}

.thanks-steps li {
    padding: 0.5rem 0;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.legal-page {
    padding: var(--spacing-lg) var(--spacing-md);
    background: #fff;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text {
        padding: var(--spacing-md);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        height: 350px;
    }

    .split-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

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

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

    .trust-left img {
        height: 300px;
    }

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

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

    .cta-sticky {
        flex-direction: column;
        text-align: center;
    }

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

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

    .service-item-split,
    .service-item-split.reverse {
        flex-direction: column;
    }

    .service-image img {
        height: 250px;
    }

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

    .story-image img {
        height: 300px;
    }

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

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

    .team-image img {
        height: 300px;
    }

    .approach-item {
        flex-direction: column;
        text-align: center;
    }

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

    .contact-map img {
        height: 300px;
    }

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

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

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}