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

.hidden {
    display: none !important;
}

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

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

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

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background: #4CAF50;
    color: #fff;
}

.cookie-btn.reject {
    background: #f44336;
    color: #fff;
}

.header-main {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

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

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

.nav-main a:hover {
    color: #666;
}

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

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

.story-container {
    max-width: 750px;
    margin: 0 auto;
}

.story-lead {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-container p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.problem-visual {
    padding: 0;
}

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

.split-image {
    flex: 1;
    background-color: #2c2c2c;
}

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

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

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.split-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.container-narrow {
    max-width: 850px;
    margin: 0 auto;
}

.section-heading {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: center;
}

.insight-reveal p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.insight-image {
    margin-top: 3rem;
    background-color: #2c2c2c;
}

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

.trust-building {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

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

.trust-building h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.trust-building > p {
    text-align: center;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.citation {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #666;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-card {
    flex: 1;
    background: #fff;
    overflow: hidden;
}

.trust-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e0e0e0;
}

.trust-card h3 {
    font-size: 1.75rem;
    margin: 2rem 2rem 1rem;
    font-weight: 500;
}

.trust-card p {
    padding: 0 2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #fff;
}

.testimonial {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #f9f9f9;
    border-left: 4px solid #2c2c2c;
}

.testimonial p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.services-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.services-intro {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
}

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

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    padding: 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.service-select-btn {
    width: 100%;
    padding: 1rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.service-card.selected {
    border: 3px solid #4CAF50;
}

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

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-form {
    background: #fff;
    padding: 3rem;
}

.form-row {
    margin-bottom: 1.75rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff9e6;
    border-top: 2px solid #e6d7a3;
    border-bottom: 2px solid #e6d7a3;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5c5c5c;
}

.references-section {
    padding: 3rem 2rem;
    background: #f9f9f9;
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.references-list a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #666;
    text-decoration: underline;
}

.footer-main {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    color: #ccc;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .split-content {
        padding: 2rem;
    }

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

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

    .nav-main {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 2rem;
    }
}