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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

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

.navbar {
    background-color: #1e293b;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

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

.nav-links a {
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #60a5fa;
}

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

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

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

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #475569;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2563eb;
    padding: 1rem 2rem;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.intro-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.intro-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #1e293b;
    text-align: center;
}

.approach-split {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.approach-image {
    flex: 1;
    background-color: #f1f5f9;
}

.approach-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

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

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

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

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}

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

.link-arrow:hover {
    transform: translateX(5px);
}

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

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

.services-grid-alt {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.service-visual {
    height: 220px;
    background-color: #e2e8f0;
}

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

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

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

.price-tag {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.75rem 1.5rem;
    margin: 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.insight-section {
    padding: 5rem 0;
    background-color: #0f172a;
}

.insight-quote {
    font-size: 1.75rem;
    line-height: 1.6;
    color: #e2e8f0;
    text-align: center;
    font-style: italic;
    padding: 0 2rem;
}

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

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

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

.form-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.form-container {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.trust-section {
    padding: 4rem 0;
    background-color: #fef3c7;
}

.trust-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #78350f;
}

.disclaimer-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #92400e;
}

.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

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

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

.footer-col a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: #cbd5e1;
    border: 2px solid #475569;
}

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

.page-header {
    background-color: #0f172a;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

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

.subheader {
    font-size: 1.35rem;
    color: #cbd5e1;
}

.services-full {
    padding: 4rem 0;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    gap: 3rem;
}

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

.service-image {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.service-details {
    flex: 1;
}

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

.service-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #475569;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #334155;
}

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

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

.cta-inline {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateX(5px);
}

.cta-section {
    padding: 5rem 0;
    background-color: #dbeafe;
    text-align: center;
}

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

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

.about-intro-split {
    display: flex;
    padding: 4rem 0;
    gap: 3rem;
    align-items: center;
}

.about-content {
    flex: 1;
}

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: #475569;
}

.about-visual {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

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

.value-item p {
    line-height: 1.7;
    color: #64748b;
}

.approach-detail {
    padding: 4rem 0;
}

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

.approach-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.team-visual {
    padding: 3rem 0;
}

.team-visual img {
    width: 100%;
    border-radius: 12px;
}

.philosophy-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.philosophy-section blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    color: #1e293b;
    border-left: 4px solid #2563eb;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.philosophy-section p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #475569;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info-block {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f8fafc;
}

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

.contact-info-block > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #475569;
}

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

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

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

.contact-item p {
    color: #64748b;
    line-height: 1.6;
}

.contact-note {
    background-color: #dbeafe;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-note p {
    color: #1e40af;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e2e8f0;
}

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

.additional-contact-info {
    padding: 4rem 0;
}

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

.additional-contact-info p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: #475569;
}

.thanks-section {
    padding: 5rem 0;
}

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

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

.thanks-lead {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2563eb;
    font-weight: 600;
}

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

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.thanks-visual {
    margin-top: 3rem;
}

.thanks-visual img {
    border-radius: 12px;
}

.legal-content {
    padding: 3rem 0 5rem;
}

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

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #475569;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .approach-split,
    .form-section-split,
    .contact-split,
    .about-intro-split {
        flex-direction: column;
    }

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

    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
    }

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

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