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

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

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

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

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.intro-section {
    background: #f9fafb;
    padding: 4rem 2rem;
}

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

.container-narrow h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

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

.services-overview {
    background: #fff;
    padding: 5rem 2rem;
}

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

.container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-icon {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1rem 0;
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-primary-large {
    background: #2563eb;
    color: #fff;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.trust-section {
    background: #1f2937;
    color: #fff;
    padding: 5rem 2rem;
}

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

.trust-content {
    flex: 1;
}

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

.trust-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.trust-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.testimonials-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #4b5563;
}

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
}

.process-section {
    background: #fff;
    padding: 5rem 2rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
}

.benefits-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 2rem;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.25rem;
    padding: 1rem 0 1rem 3rem;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

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

.container-form h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1f2937;
}

.form-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.service-form {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    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: #2563eb;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.final-cta-section {
    background: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.final-cta-section p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-column a:hover {
    color: #fff;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-cta-btn {
    background: #dc2626;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #10b981;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #059669;
}

.btn-cookie-reject {
    background: #6b7280;
    color: #fff;
}

.btn-cookie-reject:hover {
    background: #4b5563;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

.legal-content {
    background: #fff;
    padding: 4rem 2rem;
}

.legal-content h2 {
    font-size: 1.875rem;
    margin: 2.5rem 0 1rem;
    color: #1f2937;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #374151;
}

.legal-content h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #4b5563;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.about-content {
    background: #fff;
    padding: 4rem 2rem;
}

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

.values-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 240px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #2563eb;
}

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

.value-card p {
    color: #6b7280;
}

.team-section {
    background: #fff;
    padding: 5rem 2rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-image {
    margin-bottom: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.team-role {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #6b7280;
}

.stats-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
}

.approach-section {
    background: #fff;
    padding: 5rem 2rem;
}

.cta-section {
    background: #f9fafb;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-section p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.services-detail {
    background: #f9fafb;
    padding: 4rem 2rem;
}

.service-detail-card {
    max-width: 1000px;
    margin: 0 auto 4rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-detail-content {
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1f2937;
}

.service-list {
    margin: 1rem 0 2rem 2rem;
}

.service-list li {
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.pricing-info {
    background: #fff;
    padding: 4rem 2rem;
}

.faq-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.faq-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
}

.contact-section {
    background: #fff;
    padding: 4rem 2rem;
}

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

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

.contact-info h2,
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.8;
}

.contact-item a {
    color: #2563eb;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.9);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.map-info {
    color: #6b7280;
    font-size: 0.875rem;
}

.additional-info {
    background: #f9fafb;
    padding: 4rem 2rem;
}

.info-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
}

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

.info-card p {
    color: #6b7280;
}

.thanks-section {
    background: #f9fafb;
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.thanks-message {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #dbeafe;
    border-left: 4px solid #2563eb;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service {
    color: #1f2937;
    font-size: 1.125rem;
}

.next-steps {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4b5563;
    padding-left: 1rem;
}

.thanks-info {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #92400e;
}

.thanks-info p {
    color: #78350f;
    margin-bottom: 0.5rem;
}

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

.additional-resources {
    background: #fff;
    padding: 4rem 2rem;
}

.resource-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.resource-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.resource-card a {
    color: #2563eb;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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