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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

.nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #2563eb;
}

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

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

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

.hero-left p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    display: inline-block;
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

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

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

.intro-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.0625rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.services-showcase {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.services-lead {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.service-row {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.0625rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-right: 0.5rem;
}

.price-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.btn-select-service {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #1d4ed8;
}

.service-visual {
    flex: 1;
    background-color: #e5e7eb;
}

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

.cta-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.0625rem;
    color: #4b5563;
}

.cta-form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

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

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

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #1d4ed8;
}

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

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

.trust-content h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
}

.trust-content p {
    font-size: 1.0625rem;
    color: #4b5563;
}

.trust-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

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

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

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

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

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

.footer-col p {
    font-size: 0.9375rem;
}

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

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

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #1f2937;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #1d4ed8;
}

.btn-cookie-reject {
    background-color: #374151;
    color: #ffffff;
}

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

.page-hero {
    background-color: #f9fafb;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-hero-content h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.125rem;
    color: #6b7280;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.0625rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.story-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.about-approach {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

.approach-container h2 {
    text-align: center;
    font-size: 2rem;
    color: #111827;
    margin-bottom: 3rem;
}

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #4b5563;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #111827;
    margin-bottom: 3rem;
}

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

.team-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 1.0625rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

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

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

.values-container h2 {
    text-align: center;
    font-size: 2rem;
    color: #111827;
    margin-bottom: 3rem;
}

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

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.value-item p {
    color: #4b5563;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #2563eb;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-detail-header {
    margin-bottom: 2rem;
}

.service-detail-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.service-detail-title h2 {
    font-size: 2rem;
    color: #111827;
}

.service-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

.service-detail-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

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

.service-detail-text p {
    font-size: 1.0625rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-detail-text h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.service-detail-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-detail-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.services-cta {
    padding: 5rem 2rem;
    background-color: #2563eb;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.125rem;
    color: #e0e7ff;
    margin-bottom: 2rem;
}

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

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 2rem;
}

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

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

.contact-item p {
    font-size: 1.0625rem;
    color: #4b5563;
}

.contact-note {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.9375rem;
    color: #6b7280;
}

.contact-visual {
    flex: 1;
    background-color: #e5e7eb;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

.location-content h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
}

.location-content p {
    font-size: 1.0625rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

.location-detail {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
}

.location-detail h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.location-detail p {
    color: #4b5563;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

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

.thanks-service-info {
    background-color: #f0f9ff;
    border: 1px solid #bfdbfe;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #1e40af;
}

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

.thanks-next-steps h2 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h3 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: #6b7280;
}

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

.legal-page {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.legal-update {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

.legal-container a {
    color: #2563eb;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-table th,
.legal-table td {
    border: 1px solid #d1d5db;
    padding: 0.75rem;
    text-align: left;
}

.legal-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.legal-table td {
    color: #4b5563;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-row,
    .cta-split,
    .story-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .approach-item,
    .location-detail {
        flex: 1 1 100%;
    }

    .nav {
        gap: 1rem;
    }

    .hero-left h1,
    .page-hero-content h1,
    .thanks-container h1 {
        font-size: 2rem;
    }

    .service-detail-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}