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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-links a:hover {
    color: #0f172a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    background: #f1f5f9;
    border-radius: 4px;
}

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

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

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

.hero-visual {
    flex: 1;
    background: #cbd5e1;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.cta-secondary:hover {
    background: #0f172a;
    color: #ffffff;
}

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

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

.intro-visual {
    flex: 1;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.intro-text p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.25rem;
}

.services-preview {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #0f172a;
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #cbd5e1;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.75rem;
    color: #0f172a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    padding: 0 1.5rem;
    margin: auto 0 1rem;
}

.service-link {
    display: block;
    padding: 1rem 1.5rem;
    background: #f1f5f9;
    color: #0f172a;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background 0.2s;
}

.service-link:hover {
    background: #e2e8f0;
}

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

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

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.trust-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #334155;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0f172a;
    font-weight: 700;
}

.trust-visual {
    flex: 1;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.consultation-section {
    padding: 5rem 2rem;
    background: #0f172a;
}

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

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.form-container > p {
    color: #475569;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

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

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

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

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

.main-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 3rem 2rem 1rem;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.6;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    color: #475569;
}

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

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

.btn-accept {
    background: #0f172a;
    color: #ffffff;
}

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

.btn-reject {
    background: #f1f5f9;
    color: #475569;
}

.btn-reject:hover {
    background: #e2e8f0;
}

.page-header {
    background: #f8fafc;
    padding: 4rem 2rem;
    text-align: center;
}

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

.header-content p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.content-block p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.25rem;
}

.visual-block {
    flex: 1;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

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

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.expertise-card p {
    color: #475569;
}

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

.content-wrapper-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0f172a;
    text-align: center;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.value-item p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
}

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

.cta-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

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

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.cta-box p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
}

.service-detail {
    padding: 4rem 2rem;
    background: #ffffff;
}

.service-detail:nth-child(even) {
    background: #f8fafc;
}

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
}

.service-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #0f172a;
}

.service-info p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #334155;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-block {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.price-note {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.service-visual {
    flex: 1;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 90px;
}

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

.consultation-cta {
    padding: 5rem 2rem;
    background: #0f172a;
}

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

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

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

.contact-info-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.detail-block {
    margin-bottom: 2rem;
}

.detail-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.detail-block p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-areas {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.service-areas h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.service-areas p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.areas-grid {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

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

.area-column ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #334155;
}

.area-column ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0f172a;
}

.response-info {
    padding: 5rem 2rem;
    background: #ffffff;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
}

.info-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.info-box p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

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

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

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.last-updated {
    color: #64748b;
    margin-bottom: 2.5rem;
}

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

.legal-content h3 {
    font-size: 1.375rem;
    margin: 1.75rem 0 0.75rem;
    color: #1e293b;
}

.legal-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #0f172a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #334155;
}

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

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

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

.cookie-table td {
    color: #475569;
}

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

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

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.thanks-message {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.5rem;
}

.next-steps {
    text-align: left;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
}

.steps-list {
    margin-left: 1.25rem;
}

.steps-list li {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.reference-info {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.action-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

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

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

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

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

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

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

.info-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.info-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

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

    .content-wrapper,
    .content-split,
    .split-layout,
    .service-layout,
    .contact-grid,
    .service-grid,
    .info-grid,
    .areas-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

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

    .service-visual {
        position: static;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 1.5rem);
    }
}