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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a;
    text-decoration: none;
}

.nav-center {
    display: flex;
    gap: 30px;
    flex: 1 1 auto;
    justify-content: center;
}

.nav-center a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-center a:hover {
    color: #1a5f7a;
}

.nav-right {
    flex: 0 0 auto;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    max-width: 180px;
    display: block;
    text-align: right;
}

.hero-offset {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    margin-top: 40px;
}

.hero-image-left {
    flex: 1 1 auto;
    margin-bottom: 30px;
}

.hero-image-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.hero-content-right {
    flex: 1 1 auto;
    padding: 40px 20px;
}

.hero-content-right h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-right p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #15495e;
}

.section-overlap {
    margin-top: -80px;
    padding: 60px 0;
}

.content-box-elevated {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.content-box-elevated h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-box-elevated p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 80px 20px;
}

.grid-item-large {
    padding: 40px;
}

.grid-item-large h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.grid-item-large p {
    font-size: 18px;
    color: #4a4a4a;
}

.grid-item-small {
    padding: 0;
}

.service-card-offset {
    margin-left: 0;
}

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.cta-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-inline:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.section-diagonal {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-left-narrow {
    flex: 1 1 auto;
}

.content-left-narrow img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-right-wide {
    flex: 1 1 auto;
}

.content-right-wide h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-right-wide p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-extended {
    padding: 80px 0;
}

.service-row-staggered {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.service-block-elevated {
    margin-top: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.service-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.service-block p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.price-display {
    font-size: 26px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #15495e;
}

.testimonial-offset {
    padding: 60px 0;
}

.testimonial-card {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    margin-left: 0;
}

.testimonial-card p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
}

.info-section-layered {
    padding: 80px 0;
}

.layered-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block-primary {
    flex: 1 1 auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.info-block-primary h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.feature-list-irregular {
    list-style: none;
    padding: 0;
}

.feature-list-irregular li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 17px;
    color: #4a4a4a;
}

.feature-list-irregular li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.info-block-secondary {
    flex: 1 1 auto;
}

.info-block-secondary img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-section-floating {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.cta-prominent {
    display: inline-block;
    padding: 18px 40px;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.cta-prominent:hover {
    background-color: #15495e;
}

.form-section-asymmetric {
    padding: 80px 0;
}

.form-wrapper-offset {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.form-wrapper-offset h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 36px;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.footer-irregular {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero-offset {
    padding: 80px 0 40px;
    background-color: #f8f9fa;
}

.page-hero-offset h1 {
    font-size: 42px;
    color: #1a1a1a;
}

.about-intro-asymmetric {
    padding: 80px 0;
}

.content-split-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-block-left {
    flex: 1 1 auto;
}

.content-block-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-block-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.content-block-right {
    flex: 1 1 auto;
}

.content-block-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.mission-section-layered {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-box {
    padding: 50px;
    background-color: #ffffff;
    border-radius: 12px;
}

.mission-box h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.mission-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.values-grid-offset {
    padding: 80px 0;
}

.values-grid-offset h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.value-card-elevated {
    margin-left: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    background-color: #ffffff;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.value-card p {
    font-size: 16px;
    color: #4a4a4a;
}

.expertise-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.expertise-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.expertise-image {
    flex: 1 1 auto;
}

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

.expertise-content {
    flex: 1 1 auto;
}

.expertise-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.expertise-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.approach-section-staggered {
    padding: 80px 0;
}

.approach-section-staggered h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.step-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.step-item-offset {
    margin-left: 0;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f7a;
    flex: 0 0 auto;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    color: #4a4a4a;
}

.cta-section-inline {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-inline-box {
    text-align: center;
    padding: 50px 40px;
    background-color: #1a5f7a;
    border-radius: 12px;
}

.cta-inline-box h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.services-intro-asymmetric {
    padding: 60px 0;
}

.intro-text {
    font-size: 20px;
    text-align: center;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 0;
}

.service-item-layout-1 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.service-item-layout-2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.service-content {
    flex: 1 1 auto;
}

.service-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a4a4a;
}

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

.service-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 25px;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f7a;
}

.cta-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-service:hover {
    background-color: #15495e;
}

.service-image {
    flex: 1 1 auto;
}

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

.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #1a5f7a;
}

.timeline-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5f7a;
}

.timeline-item p {
    font-size: 16px;
    color: #4a4a4a;
}

.cta-final-offset {
    padding: 80px 0;
}

.cta-box-large {
    text-align: center;
    padding: 70px 50px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.cta-box-large h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-box-large p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.contact-layout {
    padding: 80px 0;
}

.contact-grid-asymmetric {
    display: flex;
    flex-direction: column;
}

.contact-info-block {
    flex: 1 1 auto;
}

.contact-info-block h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a5f7a;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.info-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.info-note p {
    font-size: 15px;
    color: #4a4a4a;
    font-style: italic;
}

.location-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

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

.why-contact-section {
    padding: 80px 0;
}

.why-contact-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
}

.reason-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5f7a;
}

.reason-item p {
    font-size: 16px;
    color: #4a4a4a;
}

.cta-contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box-contact {
    text-align: center;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 12px;
}

.cta-box-contact h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-box-contact p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.cta-email {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-email:hover {
    background-color: #15495e;
}

.thanks-section {
    padding: 80px 0;
}

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

.thanks-box h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a5f7a;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #1a5f7a;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps ul li {
    padding: 12px 0 12px 25px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #15495e;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.additional-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.additional-info p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    padding: 12px 0 12px 25px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.document-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-size: 24px;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a4a4a;
}

.legal-content a {
    color: #1a5f7a;
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .nav-center {
        gap: 40px;
    }

    .hero-offset {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .hero-image-left {
        flex: 0 0 45%;
        margin-bottom: 0;
    }

    .hero-content-right {
        flex: 0 0 50%;
    }

    .hero-content-right h1 {
        font-size: 46px;
    }

    .grid-asymmetric {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .grid-item-large {
        flex: 0 0 100%;
    }

    .grid-item-small {
        flex: 0 0 calc(50% - 15px);
    }

    .service-card-offset:nth-child(2) {
        margin-left: 30px;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .content-left-narrow {
        flex: 0 0 40%;
    }

    .content-right-wide {
        flex: 0 0 55%;
    }

    .service-row-staggered {
        flex-direction: row;
    }

    .service-block {
        flex: 1 1 50%;
    }

    .service-block-elevated {
        margin-top: 40px;
    }

    .testimonial-card {
        margin-left: 60px;
    }

    .layered-content {
        flex-direction: row;
        align-items: center;
    }

    .info-block-primary {
        flex: 0 0 55%;
    }

    .info-block-secondary {
        flex: 0 0 40%;
    }

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

    .content-split-irregular {
        flex-direction: row;
        align-items: center;
    }

    .content-block-left {
        flex: 0 0 50%;
    }

    .content-block-right {
        flex: 0 0 45%;
    }

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

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .value-card-elevated {
        margin-left: 30px;
    }

    .expertise-layout {
        flex-direction: row;
        align-items: center;
    }

    .expertise-image {
        flex: 0 0 45%;
    }

    .expertise-content {
        flex: 0 0 50%;
    }

    .step-item-offset {
        margin-left: 50px;
    }

    .service-item-layout-1 {
        flex-direction: row;
        align-items: center;
    }

    .service-item-layout-2 {
        flex-direction: row-reverse;
        align-items: center;
    }

    .service-content {
        flex: 0 0 55%;
    }

    .service-image {
        flex: 0 0 40%;
    }

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

    .reason-item {
        flex: 0 0 calc(50% - 15px);
    }

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

    .footer-col {
        flex: 0 0 auto;
    }

    .footer-col-main {
        flex: 0 0 35%;
    }
}

@media (min-width: 1024px) {
    .grid-item-small {
        flex: 0 0 calc(33.333% - 20px);
    }

    .service-card-offset:nth-child(3) {
        margin-left: 0;
    }

    .service-card-offset:nth-child(4) {
        margin-left: 60px;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1 1 33.333%;
    }

    .reasons-grid {
        flex-wrap: nowrap;
    }

    .reason-item {
        flex: 1 1 25%;
    }
}