* {
    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.7;
    color: #2c2c2c;
    background: #fafafa;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    border-radius: 4px;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    background: #e0e0e0;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

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

.hero-overlay {
    position: absolute;
    bottom: 15%;
    left: 5%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.93);
    padding: 3rem;
    border-left: 4px solid #2c2c2c;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 1.3rem;
    color: #555;
}

.story-intro {
    padding: 5rem 2rem;
    background: #fff;
}

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

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.problem-block {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.split-image {
    flex: 1;
    background: #ddd;
}

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

.insight-reveal {
    padding: 5rem 2rem;
    background: #2c2c2c;
    color: #fff;
}

.insight-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-reveal p {
    font-size: 1.15rem;
    color: #e0e0e0;
}

.trust-building {
    padding: 5rem 2rem;
    background: #fff;
}

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

.container-wide h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 2rem;
    border-left: 3px solid #0066cc;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.trust-card p {
    color: #555;
    font-size: 1.05rem;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: #f0f4f8;
}

.testimonial-inline blockquote {
    border-left: 4px solid #0066cc;
    padding-left: 2rem;
    font-style: italic;
    font-size: 1.25rem;
    color: #2c2c2c;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.services-showcase {
    padding: 5rem 2rem;
    background: #fff;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-item {
    flex: 1;
    min-width: 320px;
    background: #fafafa;
    padding: 0;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #ddd;
}

.service-item h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
}

.service-item p {
    margin: 0 1.5rem 1rem;
    color: #555;
    font-size: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1rem 1.5rem;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #0066cc;
}

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

.cta-form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-form-section > .narrow-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    background: #fff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 1.1rem;
    background: #0066cc;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #004999;
}

.final-reassurance {
    padding: 4rem 2rem;
    background: #fff;
}

.final-reassurance h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.final-reassurance p {
    font-size: 1.1rem;
    color: #555;
}

.footer {
    background: #2c2c2c;
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
}

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

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

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

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

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

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

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #0066cc;
    font-size: 0.85rem;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    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;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #66b3ff;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background: #0066cc;
    color: #fff;
}

.btn-cookie:hover {
    background: #004999;
}

.btn-cookie-alt {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-overlay {
        left: 2%;
        right: 2%;
        padding: 2rem;
    }

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

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

    .trust-cards {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}