* {
    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;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
}

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

.nav {
    display: flex;
    gap: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f9fafb;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1e40af;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
}

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

.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.split-image img {
    width: 100%;
    height: auto;
}

.services-preview {
    padding: 100px 0;
    background-color: #f9fafb;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    color: #111827;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    color: #111827;
    margin: 24px 24px 12px 24px;
}

.service-card p {
    font-size: 16px;
    color: #6b7280;
    margin: 0 24px 16px 24px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1e40af;
    margin: 0 24px 16px 24px;
}

.btn-service {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 24px 24px 24px;
    background-color: #1e40af;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #1e3a8a;
    cursor: pointer;
}

.trust-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.trust-content-reverse {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
}

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

.trust-image img {
    width: 100%;
    height: auto;
}

.methodology-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.methodology-section h2 {
    font-size: 42px;
    text-align: center;
    color: #111827;
    margin-bottom: 60px;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
    min-width: 80px;
}

.step h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
}

.step p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    color: #6b7280;
}

.contact-form {
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e40af;
}

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

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

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d1d5db;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 24px;
    background-color: #1f2937;
    border-radius: 6px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    padding: 80px 0;
    background-color: #f9fafb;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #111827;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: #6b7280;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 24px 0;
}

.price-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 600;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.cta-section {
    padding: 100px 0;
    background-color: #1e40af;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 0;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-main {
    flex: 1;
}

.about-text-main h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 24px;
}

.about-text-main p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-main {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.about-image-main img {
    width: 100%;
    height: auto;
}

.approach-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.approach-section h2 {
    font-size: 42px;
    color: #111827;
    text-align: center;
    margin-bottom: 24px;
}

.section-intro {
    font-size: 19px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.7;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-block {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.approach-block h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
}

.approach-block p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
}

.team-section h2 {
    font-size: 42px;
    color: #111827;
    text-align: center;
    margin-bottom: 24px;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-item {
    flex: 1;
    min-width: 280px;
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 12px;
}

.expertise-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.values-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.values-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 32px;
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.values-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.values-image img {
    width: 100%;
    height: auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 32px;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 8px;
}

.contact-block p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-note {
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-section {
    padding: 100px 0;
    min-height: 500px;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #111827;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 16px;
}

.thanks-submessage {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-service-info {
    padding: 24px;
    background-color: #f0f9ff;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #1e40af;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    padding: 14px 28px;
    background-color: #1e40af;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 14px 28px;
    background-color: #ffffff;
    color: #1e40af;
    font-weight: 600;
    border: 2px solid #1e40af;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: #111827;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #111827;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: #111827;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f9fafb;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 16px;
    color: #111827;
    border-bottom: 2px solid #e5e7eb;
}

.cookie-table td {
    padding: 12px;
    font-size: 15px;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .split-layout,
    .about-split,
    .trust-content-reverse,
    .service-detail-item,
    .values-content,
    .contact-layout {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .nav {
        flex-wrap: wrap;
    }

    .cookie-content {
        flex-direction: column;
    }
}