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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

.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: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-fullwidth {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2d5a7b;
}

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

.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-text {
    max-width: 900px;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.5rem;
    line-height: 1.4;
    opacity: 0.95;
}

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

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

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.problem-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.problem-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.problem-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.7;
}

.problem-visual {
    flex: 1;
    background-color: #e8f0f5;
}

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

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

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f7931e;
}

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

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

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

.trust-builders {
    padding: 6rem 2rem;
    background-color: #f4f4f4;
}

.trust-builders h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.trust-card p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.6;
}

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

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #f7931e;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2d2d2d;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.benefits-visual {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.benefits-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.benefits-image {
    flex: 1;
    background-color: #d0e5f2;
}

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

.benefits-list {
    flex: 1;
}

.benefits-list h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f7931e;
    font-weight: 700;
    font-size: 1.5rem;
}

.how-it-works {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #f7931e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #1a3a4d;
}

.step p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

.services-pricing {
    padding: 6rem 2rem;
    background-color: #f4f7fa;
}

.services-pricing h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
}

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

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

.pricing-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2.5rem;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 2px solid #f7931e;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #f7931e;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a3a4d;
}

.service-details p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.service-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-details li {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f7931e;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3a4d;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background-color: #f7931e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #d97d0f;
}

.select-service.selected {
    background-color: #1a3a4d;
}

.consultation-form {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.consultation-form > p {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

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

.final-trust {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.certifications {
    text-align: center;
}

.certifications h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a3a4d;
}

.certifications p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

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

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #ccc;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: #2d2d2d;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #bbb;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #888;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

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

    .problem-grid,
    .benefits-layout {
        flex-direction: column;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .step {
        flex-direction: column;
    }

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