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

.main-nav {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #e8eaed;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a90e2;
}

.ad-notice {
    color: #95a5a6;
    font-size: 0.8rem;
    border-left: 1px solid #34495e;
    padding-left: 1.5rem;
}

.hero-block {
    width: 100%;
    background-color: #0f1419;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(15, 20, 25, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 4rem;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3.5rem;
    max-width: 800px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-overlay p {
    color: #e8eaed;
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

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

.cta-primary:hover {
    background-color: #357abd;
}

.intro-statement {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.intro-statement h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-statement p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.service-card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-highlight {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-highlight img {
    width: 50%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e5e7eb;
}

.service-text {
    width: 50%;
}

.service-text h3 {
    font-size: 2rem;
    color: #1a2332;
    margin-bottom: 1rem;
}

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

.price-tag {
    display: inline-block;
    background-color: #1a2332;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
}

.value-proposition {
    background-color: #1a2332;
    padding: 5rem 2rem;
}

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

.value-proposition h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.value-proposition p {
    color: #e8eaed;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-subtle {
    color: #4a90e2;
    text-decoration: none;
    border-bottom: 1px solid #4a90e2;
    transition: color 0.3s ease;
}

.link-subtle:hover {
    color: #357abd;
}

.full-width-cta {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 2rem;
    text-align: center;
}

.service-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #357abd;
}

.additional-services {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.additional-services h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 3rem;
    text-align: center;
}

.service-list-compact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #4a90e2;
}

.service-item h4 {
    font-size: 1.5rem;
    color: #1a2332;
    margin-bottom: 0.75rem;
}

.service-item p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.price-label {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #4a90e2;
}

.trust-indicators {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.testimonial-block {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-block p {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-block cite {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

.final-cta {
    background-color: #1a2332;
    padding: 5rem 2rem;
}

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

.final-cta p {
    color: #e8eaed;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.cta-secondary:hover {
    background-color: #4a90e2;
    color: #ffffff;
}

.site-footer {
    background-color: #0f1419;
    color: #95a5a6;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a90e2;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid #2c3e50;
    border-bottom: 1px solid #2c3e50;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #7f8c8d;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
}

.cookie-content p {
    color: #e8eaed;
    font-size: 0.95rem;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

.btn-reject:hover {
    background-color: #2c3e50;
}

.cookie-actions a {
    color: #4a90e2;
    font-size: 0.9rem;
    text-decoration: none;
}

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

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

.page-header p {
    color: #e8eaed;
    font-size: 1.2rem;
}

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

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

.text-column {
    flex: 1;
}

.text-column h2 {
    font-size: 2.2rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

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

.image-column {
    flex: 1;
}

.image-column img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e5e7eb;
}

.methodology-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.process-blocks {
    display: flex;
    gap: 2rem;
}

.process-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
}

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

.process-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.expertise-areas h2 {
    font-size: 2.2rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.expertise-areas p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.capability-list {
    list-style: none;
    padding-left: 0;
}

.capability-list li {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.capability-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.values-statement {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
}

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

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-image {
    padding: 0;
    background-color: #ffffff;
}

.full-image-container {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.full-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background-color: #e5e7eb;
}

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

.final-about-cta h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-about-cta p {
    color: #e8eaed;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.service-visual {
    width: 45%;
}

.service-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e5e7eb;
}

.service-info {
    width: 55%;
}

.service-info h2 {
    font-size: 2rem;
    color: #1a2332;
    margin-bottom: 1rem;
}

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

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

.service-includes {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.service-includes li {
    font-size: 0.95rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

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

.service-form-section h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1rem;
    text-align: center;
}

.service-form-section p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 3rem;
    text-align: center;
}

.service-request-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-details {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.contact-block {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 6px;
}

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

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

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.hours-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.contact-map-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.contact-info-extended h2 {
    font-size: 2rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.contact-info-extended p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info-extended a {
    color: #4a90e2;
    text-decoration: none;
}

.contact-info-extended a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.thanks-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    color: #1a2332;
    margin-bottom: 1rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

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

.btn-primary:hover {
    background-color: #357abd;
}

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

.btn-secondary:hover {
    background-color: #4a90e2;
    color: #ffffff;
}

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

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

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

.last-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a2332;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

.legal-content li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .ad-notice {
        display: none;
    }

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

    .hero-overlay p {
        font-size: 1rem;
    }

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

    .service-highlight img,
    .service-text {
        width: 100%;
    }

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

    .text-column,
    .image-column {
        width: 100%;
    }

    .process-blocks {
        flex-direction: column;
    }

    .values-statement .content-wrap {
        flex-direction: column;
    }

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

    .service-visual,
    .service-info {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}