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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-disclaimer {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0066cc;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background: #1a1a1a;
}

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

.btn-hero {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: background 0.3s;
}

.btn-hero:hover {
    background: #0052a3;
}

.intro-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.services-grid {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding-left: 2rem;
}

.section-header-offset h2 {
    font-size: 2.25rem;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.service-content p {
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.btn-select {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #0052a3;
}

.split-process {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background: #ffffff;
}

.process-image {
    flex: 1;
    background: #e0e0e0;
}

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

.process-text {
    flex: 1;
    padding: 3rem;
}

.process-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step p {
    color: #4a4a4a;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: #2c2c2c;
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    display: block;
    font-size: 0.9375rem;
    color: #999;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-container > p {
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.trust-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #999;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #2c2c2c;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
}

.btn-primary {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #2c2c2c;
}

.about-hero {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.25rem;
    color: #4a4a4a;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    background: #e0e0e0;
}

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

.about-content {
    flex: 1;
    padding: 4rem 3rem;
    background: #ffffff;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.info-block p {
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background: #e0e0e0;
    min-height: 400px;
    border-radius: 8px;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.legal-page ul {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.legal-page ul li {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.thanks-container {
    max-width: 700px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #0066cc;
}

.thanks-container p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.thanks-container .btn-hero {
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

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

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

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