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

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

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

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

.ad-disclosure {
    font-size: 0.8rem;
    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;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-cookie.accept {
    background-color: #10b981;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #059669;
}

.btn-cookie.reject {
    background-color: #64748b;
    color: #ffffff;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8fafc;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #475569;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.intro-statement {
    padding: 5rem 2rem;
    background-color: #0f172a;
    color: #e2e8f0;
}

.statement-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.statement-wrapper p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-grid {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #64748b;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 400px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.service-image {
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

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

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

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.inquiry-section {
    padding: 6rem 2rem;
    background-color: #f1f5f9;
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-icon {
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.selected-service-display {
    background-color: #dbeafe;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #3b82f6;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #2563eb;
}

.credentials-section {
    padding: 6rem 2rem;
    background-color: #1e293b;
    color: #e2e8f0;
}

.credentials-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.credentials-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.credentials-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.credential-item {
    text-align: center;
}

.credential-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.credential-label {
    font-size: 1rem;
    color: #cbd5e1;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3.5rem;
    text-align: center;
    font-weight: 800;
}

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

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

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

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

.team-philosophy {
    padding: 6rem 2rem;
    background-color: #f8fafc;
}

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

.philosophy-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.philosophy-content {
    flex: 1;
}

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

.philosophy-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.experience-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.experience-section > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #475569;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.experience-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

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

.experience-card p {
    color: #475569;
    line-height: 1.7;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #1e293b;
    color: #e2e8f0;
}

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

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

.approach-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.header-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-block {
    padding: 5rem 2rem;
}

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

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

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

.service-text {
    flex: 1;
}

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

.service-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0.75rem 1.25rem;
    background-color: #e0f2fe;
    color: #0369a1;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-pricing-display {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f0f9ff;
    border-radius: 8px;
}

.price-label {
    font-weight: 600;
    color: #475569;
    margin-right: 0.5rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3b82f6;
}

.service-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.cta-bottom {
    padding: 5rem 2rem;
    background-color: #3b82f6;
    text-align: center;
}

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

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

.cta-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #ffffff;
    color: #3b82f6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.cta-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.contact-page {
    padding: 6rem 2rem;
    background-color: #f8fafc;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.contact-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.contact-info-layout {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.contact-block p {
    color: #475569;
    line-height: 1.7;
}

.cta-link {
    display: inline-block;
    margin-top: 1rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #2563eb;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.directions-section {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.directions-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.8;
}

.thanks-page {
    padding: 6rem 2rem;
    background-color: #f8fafc;
    min-height: 70vh;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #dbeafe;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    display: inline-block;
    min-width: 400px;
}

.service-confirmation p {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.next-steps {
    margin-bottom: 3rem;
}

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

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

.step-item {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

.step-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.additional-info {
    font-size: 0.95rem;
    color: #64748b;
}

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

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

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

.last-updated {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-content a {
    color: #3b82f6;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

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

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .service-card {
        min-width: 100%;
    }

    .form-split-layout {
        flex-direction: column;
    }

    .credentials-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .philosophy-layout {
        flex-direction: column;
    }

    .service-detail-content,
    .service-detail-block.reverse .service-detail-content {
        flex-direction: column;
    }

    .contact-info-layout {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
    }
}