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

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 25px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

.header-minimal {
    padding: 20px 40px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #ffffff;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-right a {
    font-size: 15px;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

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

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

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

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

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

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

.story-intro {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.lead-text {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.problem-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

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

.insight-reveal {
    padding: 80px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.insight-reveal h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.insight-reveal p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.testimonial-inline {
    margin-top: 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffffff;
}

.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    color: #ffffff;
}

.testimonial-author {
    font-size: 16px;
    color: #cccccc;
}

.visual-break {
    height: 500px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.trust-building {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.trust-building h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.cards-trust {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

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

.card-trust img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-trust h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
}

.card-trust p {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0 25px 25px;
    line-height: 1.6;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: #2c2c2c;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #1a1a1a;
}

.benefits-section p {
    font-size: 18px;
    color: #4a4a4a;
}

.social-proof {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.social-proof h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-left: 3px solid #1a1a1a;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.testimonial-card span {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.cta-primary {
    padding: 60px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-primary h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-primary p {
    font-size: 20px;
    color: #e0e0e0;
}

.services-pricing {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 40px 30px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-card.selected {
    border-color: #1a1a1a;
    background-color: #f0f0f0;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 25px;
    min-height: 80px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #333333;
}

.service-card.selected .btn-select {
    background-color: #4a4a4a;
}

.form-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.references-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.references-list {
    list-style-position: inside;
}

.references-list li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.thanks-box .service-name {
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-box a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-box a:hover {
    background-color: #333333;
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

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

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

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
    }

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