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

:root {
    --primary-color: #1a4d6d;
    --secondary-color: #2e7d9e;
    --accent-color: #f49d37;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--accent-color);
    color: var(--text-dark);
}

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

.btn-cookie-alt {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    gap: 32px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.split-right {
    background-size: cover;
    background-position: center;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.value-split {
    display: flex;
}

.value-split .split-left,
.value-split .split-right {
    flex: 1;
}

.value-split .content-block {
    padding: 80px 60px;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

.content-block h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 20px;
}

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

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

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

.insight-card {
    flex: 1;
    min-width: 280px;
}

.insight-number {
    font-size: 72px;
    font-weight: 700;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.services-showcase {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
}

.testimonial-strip {
    background: var(--bg-white);
    padding: 80px 20px;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 16px;
}

cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.form-benefits li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

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

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

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

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.trust-markers {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

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

.trust-item strong {
    color: var(--text-dark);
    font-size: 18px;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col a {
    color: var(--bg-white);
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.about-split {
    display: flex;
    padding: 80px 0;
}

.approach-section {
    background: var(--bg-light);
    padding: 100px 20px;
}

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

.approach-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.approach-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.values-split {
    display: flex;
    padding: 80px 0;
}

.team-section {
    background: var(--bg-white);
    padding: 100px 20px;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 60px;
}

.team-highlights {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-stat {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-stat p {
    font-size: 16px;
    color: var(--text-light);
}

.cta-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 20px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.services-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 36px;
    color: var(--text-dark);
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-includes,
.service-ideal {
    margin-bottom: 32px;
}

.service-includes h3,
.service-ideal h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

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

.btn-service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.process-section {
    background: var(--bg-light);
    padding: 100px 20px;
}

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

.process-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: 20px;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.contact-section {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.info-block a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--secondary-color);
}

.info-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

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

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.thanks-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.thanks-details {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.next-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

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

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

.thanks-service {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.helpful-resources {
    background: var(--bg-white);
    padding: 80px 20px;
}

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

.resources-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-page {
    padding: 60px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.cookie-table {
    margin: 24px 0;
}

.cookie-table h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

    .hero-split,
    .value-split,
    .about-split,
    .values-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

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

    .content-block h2,
    .services-intro h2,
    .approach-container h2,
    .team-container h2,
    .cta-container h2,
    .process-container h2,
    .faq-container h2 {
        font-size: 28px;
    }

    .insight-header h2 {
        font-size: 32px;
    }

    .form-split,
    .contact-container {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-alt {
        flex: 1;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .thanks-details {
        padding: 30px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}