* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7bb6;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 25px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.benefits-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

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

.benefits-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.benefits-content {
    flex: 1;
    padding: 60px;
}

.benefits-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.benefits-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.how-it-works {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.step-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-form-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-description {
    flex: 1;
}

.form-description h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.form-description p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.trust-indicators {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.indicator-item {
    display: flex;
    flex-direction: column;
}

.indicator-item strong {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.indicator-item span {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.form-container {
    flex: 1;
}

.service-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.testimonials-content {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

.testimonials-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

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

.testimonials-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.science-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.science-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.science-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.citation {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.final-cta-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

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

.cta-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 16px;
}

.cta-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-column a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.reference-item {
    font-size: 13px;
    margin-bottom: 10px;
}

.reference-item a {
    color: #bbb;
    text-decoration: none;
}

.reference-item a:hover {
    color: white;
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: #666;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.about-content {
    flex: 1;
    padding: 60px;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    background-color: var(--bg-light);
}

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

.values-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-content {
    flex: 1;
    padding: 60px;
}

.values-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.team-section .section-header p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.technology-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.technology-content {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

.technology-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.technology-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.technology-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.services-intro-image {
    flex: 1;
    background-color: #ddd;
}

.services-intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-intro-content {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

.services-intro-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.services-intro-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.services-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.service-header {
    padding: 30px;
    background-color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h3 {
    font-size: 26px;
    color: var(--primary-color);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.service-body {
    padding: 30px;
}

.service-body p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-image {
    padding: 0 30px 30px;
}

.service-image img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.services-comparison {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.services-comparison h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.comparison-grid {
    display: flex;
    gap: 40px;
}

.comparison-item {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.comparison-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.comparison-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.contact-info {
    flex: 1;
    padding: 60px;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.contact-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-map-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.map-content {
    text-align: center;
    margin-bottom: 40px;
}

.map-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-content p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    display: block;
}

.faq-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-container > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 50px;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-resources {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-resources h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-resources > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.resource-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.resource-link {
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.resource-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.legal-page {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-intro {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section ul li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.cookie-table {
    margin-top: 25px;
}

.cookie-row {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.cookie-name {
    margin-bottom: 10px;
}

.cookie-desc p {
    font-size: 14px;
    margin-bottom: 5px;
}

@media (max-width: 968px) {
    .hero-split,
    .benefits-split,
    .testimonials-split,
    .final-cta-split,
    .about-split,
    .values-split,
    .technology-split,
    .services-intro-split,
    .contact-split,
    .form-split {
        flex-direction: column;
    }

    .steps-grid,
    .comparison-grid,
    .trust-indicators {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .resource-links {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}