* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.nav-links a:hover {
    color: #1e40af;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
}

.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;
    margin: 0;
}

.cookie-content a {
    color: #93c5fd;
}

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

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #1e40af;
    color: #ffffff;
}

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

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

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

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: #f9fafb;
}

.hero-content-left,
.hero-left {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
}

.hero-text-content {
    max-width: 600px;
}

.hero-content-left h1,
.hero-text-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-subtitle,
.hero-text-content p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #1e40af;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1e3a8a;
}

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

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

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

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

.intro-section p {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.split-layout,
.approach-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block,
.approach-content {
    flex: 1;
}

.content-block h2,
.approach-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.content-block p,
.approach-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.image-block,
.approach-image {
    flex: 1;
    background-color: #e5e7eb;
}

.image-block img,
.approach-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-overview,
.services-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2,
.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

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

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

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

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

.service-image {
    width: 100%;
    height: 200px;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

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

.service-card p {
    font-size: 1rem;
    color: #4b5563;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

.price,
.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 1.5rem 1.5rem;
}

.select-service,
.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.image-block-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.content-block-right {
    flex: 1;
}

.content-block-right h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
}

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    min-width: 60px;
}

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

.step p {
    color: #4b5563;
}

.cta-section,
.form-section {
    padding: 5rem 2rem;
    background-color: #1e40af;
    color: #ffffff;
}

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

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form,
.inquiry-form {
    margin-top: 3rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #111827;
}

.contact-form textarea,
.inquiry-form textarea {
    resize: vertical;
}

.submit-btn,
.btn-submit {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #1e40af;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.submit-btn:hover,
.btn-submit:hover {
    background-color: #f3f4f6;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef3c7;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

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

.disclaimer-box p {
    color: #4b5563;
    font-size: 0.95rem;
}

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

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

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

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.testimonial-author {
    font-weight: 600;
    color: #1e40af;
    font-style: normal;
}

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

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

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

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

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

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

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

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

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

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

.footer-bottom .disclaimer {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

.page-header {
    padding: 4rem 2rem;
    background-color: #1e40af;
    color: #ffffff;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.25rem;
    color: #dbeafe;
}

.about-intro,
.services-detail,
.contact-content,
.legal-content {
    padding: 5rem 2rem;
}

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

.content-half {
    flex: 1;
}

.content-half h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.content-half p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.content-half img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

.experience-section {
    padding: 5rem 2rem;
}

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

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

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

.text-content {
    flex: 1;
}

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

.text-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

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

.experience-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4b5563;
}

.experience-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

.stats-section {
    padding: 5rem 2rem;
    background-color: #1e40af;
    color: #ffffff;
}

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

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

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

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #111827;
}

.approach-content > p {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

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

.approach-block {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.approach-block h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

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

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

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
}

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

.cta-box p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1e40af;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background-color 0.3s;
}

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

.service-detail-block {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-detail-block.alt {
    background-color: #f9fafb;
}

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

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

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4b5563;
}

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

.service-pricing {
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #6b7280;
    margin-right: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
}

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

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

.cta-banner {
    padding: 5rem 2rem;
    background-color: #1e40af;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
}

.btn-primary-light {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1e40af;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background-color 0.3s;
}

.btn-primary-light:hover {
    background-color: #f3f4f6;
}

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

.contact-info-block {
    flex: 1;
}

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

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

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

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

.contact-item p {
    color: #4b5563;
    line-height: 1.8;
}

.contact-note {
    padding: 1.5rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.contact-note p {
    color: #92400e;
    margin: 0;
}

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

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

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

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

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

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f9fafb;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

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

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

.service-confirmation {
    padding: 1.5rem;
    background-color: #dbeafe;
    border-radius: 6px;
    margin: 2rem 0;
    color: #1e40af;
    font-weight: 600;
}

.next-steps {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #ffffff;
    color: #1e40af;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1e40af;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #1e40af;
    color: #ffffff;
}

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

.legal-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

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

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

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

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

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    color: #4b5563;
}

.legal-container ul li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.url-display {
    word-break: break-all;
}

.legal-update {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .approach-split,
    .split-reverse,
    .split-layout-even,
    .split-reverse-layout,
    .service-split,
    .contact-layout {
        flex-direction: column;
    }

    .hero-content-left h1,
    .hero-text-content h1,
    .header-content h1 {
        font-size: 2rem;
    }

    .content-block h2,
    .approach-content h2,
    .content-half h2,
    .text-content h2,
    .service-info h2 {
        font-size: 1.75rem;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .testimonials {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }
}