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

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

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

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

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

.btn-accept, .btn-reject {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4299e1;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3182ce;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

.nav-links a:hover {
    color: #2d3748;
}

.ad-notice {
    font-size: 0.75rem;
    color: #718096;
    background-color: #f7fafc;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
}

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

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #2d3748;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d3748;
    color: #ffffff;
}

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

.split-left {
    flex: 1;
    background-color: #edf2f7;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.split-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.split-right p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

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

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.header-left h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.header-left p {
    font-size: 1.125rem;
    color: #718096;
    max-width: 600px;
}

.link-arrow {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.link-arrow::after {
    content: ' →';
}

.link-arrow:hover {
    color: #4299e1;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-visual {
    flex: 0 0 45%;
    background-color: #edf2f7;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    color: #4a5568;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.btn-select {
    padding: 0.875rem 1.75rem;
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
}

.split-feature-reverse {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.split-feature-reverse .split-right {
    flex: 1;
    background-color: #edf2f7;
}

.split-feature-reverse .split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-feature-reverse .split-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #1a202c;
    color: #ffffff;
}

.split-feature-reverse .split-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.split-feature-reverse .split-left p {
    font-size: 1.0625rem;
    color: #e2e8f0;
    margin-bottom: 1.25rem;
}

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

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.125rem;
    color: #4a5568;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.trust-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.trust-left h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2.5rem;
}

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

.trust-item h4 {
    font-size: 1.375rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: #4a5568;
    font-size: 1.0625rem;
}

.trust-right {
    flex: 1;
    background-color: #edf2f7;
}

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

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.disclaimer {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #718096;
}

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

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

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

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

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.detail-visual {
    flex: 0 0 50%;
    background-color: #edf2f7;
}

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

.detail-content {
    flex: 1;
    padding: 3rem;
}

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

.detail-content p {
    color: #4a5568;
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
}

.detail-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 6px;
}

.detail-features h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.detail-features ul {
    list-style: none;
    padding-left: 0;
}

.detail-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    padding-left: 1.5rem;
    position: relative;
}

.detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 1.5rem 0;
}

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

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

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

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

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

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

.about-hero-content p {
    font-size: 1.25rem;
    color: #e2e8f0;
}

.about-hero-visual {
    flex: 1;
    background-color: #edf2f7;
}

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

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.story-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f7fafc;
}

.story-left h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

.story-right {
    flex: 1;
    background-color: #edf2f7;
}

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

.approach-split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.approach-right {
    flex: 1;
    background-color: #edf2f7;
}

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

.approach-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.approach-left h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.approach-left p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.values-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

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

.value-card p {
    color: #4a5568;
    font-size: 1.0625rem;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.team-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #2d3748;
    color: #ffffff;
}

.team-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.0625rem;
    color: #e2e8f0;
    margin-bottom: 1.25rem;
}

.team-visual {
    flex: 1;
    background-color: #edf2f7;
}

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

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

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

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

.contact-hero {
    background-color: #2d3748;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.contact-info-side {
    flex: 1;
    padding: 3rem;
    background-color: #f7fafc;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.contact-block p {
    color: #4a5568;
    font-size: 1.0625rem;
    line-height: 1.8;
}

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

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

.location-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.location-section h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.location-section > p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

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

.location-card {
    flex: 1;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.location-card h4 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.location-card p {
    color: #4a5568;
    font-size: 1rem;
}

.contact-cta {
    background-color: #1a202c;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.thanks-container {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-content {
    text-align: center;
    background-color: #f7fafc;
    padding: 4rem 3rem;
    border-radius: 8px;
}

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

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

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

.thanks-details {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
}

.thanks-details p {
    color: #2d3748;
    font-size: 1.0625rem;
}

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

.next-steps h2 {
    font-size: 2rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.step {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #4299e1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.375rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.step p {
    color: #4a5568;
    font-size: 1rem;
}

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

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

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

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

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

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

.legal-header {
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.legal-header .update-date {
    color: #718096;
    font-size: 0.9375rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.375rem;
    color: #2d3748;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: #4a5568;
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    color: #4a5568;
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-intro,
    .split-feature-reverse,
    .trust-split,
    .about-hero-split,
    .story-split,
    .approach-split-reverse,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card,
    .service-detail-card {
        flex-direction: column;
    }

    .service-visual,
    .detail-visual {
        flex: 0 0 auto;
        min-height: 300px;
    }

    .form-container-split {
        flex-direction: column;
        gap: 2rem;
    }

    .steps-grid,
    .location-details {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}