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

:root {
    --primary-color: #1a4d7c;
    --primary-dark: #0f3554;
    --accent-color: #d4af37;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2d7a4f;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 124, 0.9) 0%, rgba(15, 53, 84, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    z-index: 2;
}

.hero-overlay h1 {
    color: white;
    font-size: 3rem;
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    max-width: 700px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.intro-hook {
    padding: 5rem 0 4rem;
    background-color: var(--bg-white);
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.problem-amplify {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background-color: white;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.story-section {
    padding: 5rem 0;
    background-color: white;
}

.insight-reveal {
    padding: 4rem 0;
    background-color: var(--primary-dark);
}

.insight-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-left: 6px solid var(--accent-color);
}

.insight-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.insight-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.trust-building {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.credentials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credential-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.credential-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.testimonial-inline {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

blockquote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    padding: 2rem 0;
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 0;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-medium);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.methodology-section {
    padding: 5rem 0;
    background-color: white;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.method-step {
    padding: 2rem;
    background-color: var(--bg-light);
    position: relative;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.method-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-proof {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.testimonial-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-top: 3px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-card cite {
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: white;
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.cta-primary {
    padding: 5rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-primary h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-primary p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: #c49b2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

.cta-button-alt {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button-alt:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.objection-handling {
    padding: 5rem 0;
    background-color: white;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.services-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.service-card.featured {
    border-top-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    border-radius: 3px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card ul {
    margin: 1.5rem 0;
}

.service-card li {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    margin: 1.5rem 0;
}

.service-select-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.service-card.selected {
    border-top-color: var(--success-color);
    background-color: #f0f8f4;
}

.service-card.selected .service-select-btn {
    background-color: var(--success-color);
}

.form-section {
    padding: 5rem 0;
    background-color: white;
}

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

label {
    display: block;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.urgency-box {
    background-color: white;
    padding: 3rem;
    border-left: 6px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.urgency-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.final-cta {
    padding: 5rem 0;
    background-color: var(--primary-dark);
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-btn {
    display: inline-block;
    background-color: var(--primary-dark);
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-alt {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    margin-top: 70px;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.about-story {
    padding: 5rem 0;
    background-color: white;
}

.philosophy-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    background-color: white;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.philosophy-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.team-section {
    padding: 5rem 0;
    background-color: white;
}

.credentials-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.credentials-list {
    list-style: none;
    margin: 2rem 0;
}

.credentials-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.values-section {
    padding: 5rem 0;
    background-color: white;
}

.values-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 3rem 0;
}

.service-full {
    background-color: white;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    border-radius: 4px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.service-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-body ul {
    margin: 1rem 0;
}

.service-body strong {
    color: var(--primary-color);
}

.services-intro {
    padding: 3rem 0;
    background-color: white;
}

.service-comparison {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.pricing-transparency {
    padding: 4rem 0;
    background-color: white;
}

.contact-content {
    padding: 4rem 0;
    background-color: white;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-cta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-box {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-top: 4px solid var(--primary-color);
}

.cta-box h3 {
    margin-bottom: 1rem;
}

.location-info {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.compliance-notice {
    padding: 3rem 0;
    background-color: white;
}

.compliance-notice h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #1e5a38 100%);
    text-align: center;
    margin-top: 70px;
}

.thanks-hero h1 {
    color: white;
}

.thanks-content {
    padding: 5rem 0;
    background-color: white;
}

.thanks-info {
    margin-bottom: 3rem;
}

.next-steps {
    counter-reset: step-counter;
    list-style: none;
    margin: 2rem 0;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 2rem;
    background-color: var(--bg-light);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 5rem;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.next-steps h3 {
    margin-bottom: 0.5rem;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
}

.thanks-reminder {
    background-color: white;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.thanks-additional {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.link-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

.thanks-contact {
    padding: 3rem 0;
    background-color: white;
    text-align: center;
}

.legal-content {
    padding: 5rem 0;
    background-color: white;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-overlay h1 {
        font-size: 3.5rem;
    }

    .split-content {
        flex-direction: row;
        gap: 4rem;
    }

    .credentials-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .credential-item {
        flex: 1;
    }

    .testimonial-row {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-layout {
        flex-direction: row;
    }

    .thanks-links {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-visual {
        height: 700px;
    }

    .hero-overlay h1 {
        font-size: 4rem;
    }

    .sticky-cta {
        display: block;
    }
}
