* {
    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;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e1e4e8;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #1a5490;
}

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

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

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

.hero-asymmetric {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    position: relative;
    background-color: #f7f9fb;
}

.hero-content-offset {
    flex: 1 1 500px;
    padding: 80px 6% 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 520px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 38px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.hero-image-block {
    flex: 1 1 400px;
    position: relative;
    background-color: #e8edf2;
}

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

.intro-overlap {
    display: flex;
    flex-wrap: wrap;
    padding: 90px 6%;
    background-color: #ffffff;
    gap: 50px;
}

.intro-text-wide {
    flex: 2 1 500px;
    padding-right: 40px;
}

.intro-text-wide h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text-wide p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-visual-accent {
    flex: 1 1 350px;
    position: relative;
    margin-top: -60px;
    background-color: #f0f4f8;
}

.intro-visual-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-asymmetric {
    padding: 100px 6%;
    background-color: #f7f9fb;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 80px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1a5490;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #4a5568;
}

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

.service-card {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card.card-large {
    flex: 1 1 calc(60% - 30px);
}

.service-card.card-medium {
    flex: 1 1 calc(50% - 30px);
}

.service-card.card-small {
    flex: 1 1 calc(33.333% - 30px);
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    margin-bottom: 25px;
    background-color: #e8edf2;
}

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

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

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.select-service-btn {
    padding: 12px 28px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #134073;
    transform: translateY(-2px);
}

.form-section-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 700px;
}

.form-container-offset {
    flex: 1 1 500px;
    padding: 80px 8%;
    background-color: #ffffff;
}

.form-container-offset h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 35px;
}

.consultation-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e4e8;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 14px 40px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-visual-side {
    flex: 1 1 400px;
    position: relative;
    background-color: #e8edf2;
}

.form-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-elements-scattered {
    padding: 90px 6%;
    background-color: #f7f9fb;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.trust-block {
    flex: 1 1 280px;
    padding: 35px;
    background-color: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.trust-block-1 {
    margin-top: 0;
}

.trust-block-2 {
    margin-top: 40px;
}

.trust-block-3 {
    margin-top: 20px;
}

.trust-block h3 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 6% 30px;
}

.footer-main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col-wide {
    flex: 2 1 300px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

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

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

.footer-disclaimer {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    border-left: 4px solid #1a5490;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 6%;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #6cb2eb;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #1a5490;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #134073;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

.about-hero-offset {
    padding: 100px 6% 80px 12%;
    background-color: #f7f9fb;
}

.about-hero-text h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 800;
    max-width: 700px;
}

.about-hero-text p {
    font-size: 20px;
    color: #4a5568;
    max-width: 650px;
}

.about-story-asymmetric {
    display: flex;
    flex-wrap: wrap;
    padding: 90px 6%;
    background-color: #ffffff;
    gap: 60px;
}

.story-content-main {
    flex: 2 1 500px;
    padding-right: 40px;
}

.story-content-main h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-content-main p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 22px;
    line-height: 1.8;
}

.story-visual-block {
    flex: 1 1 350px;
    margin-top: 50px;
    background-color: #e8edf2;
}

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

.philosophy-split {
    display: flex;
    flex-wrap: wrap;
    padding: 90px 6%;
    background-color: #f7f9fb;
    gap: 50px;
}

.philosophy-left {
    flex: 1 1 400px;
}

.philosophy-left h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 700;
}

.philosophy-left p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.philosophy-right {
    flex: 1 1 400px;
    padding-left: 40px;
}

.philosophy-right h3 {
    font-size: 28px;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.principles-list li {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.principles-list strong {
    color: #2c3e50;
}

.team-irregular-layout {
    padding: 90px 6%;
    background-color: #ffffff;
}

.team-irregular-layout h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 50px;
    font-weight: 700;
    padding-left: 60px;
}

.team-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.team-description-block {
    flex: 1 1 450px;
    padding-right: 30px;
}

.team-description-block p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 22px;
    line-height: 1.8;
}

.team-image-block {
    flex: 1 1 400px;
    margin-top: -40px;
    background-color: #e8edf2;
}

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

.values-scattered {
    padding: 90px 6%;
    background-color: #f7f9fb;
}

.values-scattered h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.values-container-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-card {
    flex: 1 1 calc(50% - 35px);
    padding: 35px;
    background-color: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.value-pos-1 {
    margin-top: 0;
}

.value-pos-2 {
    margin-top: 50px;
}

.value-pos-3 {
    margin-top: 25px;
}

.value-pos-4 {
    margin-top: 60px;
}

.value-card h3 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-about-offset {
    padding: 80px 6% 80px 12%;
    background-color: #1a5490;
}

.cta-content-block {
    max-width: 600px;
}

.cta-content-block h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-block p {
    font-size: 18px;
    color: #e8edf2;
    margin-bottom: 30px;
}

.cta-btn-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.services-hero-minimal {
    padding: 100px 6% 80px;
    background-color: #f7f9fb;
    text-align: center;
}

.services-hero-minimal h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-hero-minimal p {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed-asymmetric {
    padding: 60px 6% 90px;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
    gap: 50px;
}

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

.service-layout-3 {
    flex-direction: column;
}

.service-detail-image {
    flex: 1 1 400px;
    background-color: #e8edf2;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.service-detail-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 20px;
    font-weight: 700;
}

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

.service-detail-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 15px;
}

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

.service-detail-full-content {
    flex: 1 1 100%;
}

.service-detail-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 25px;
}

.service-col {
    flex: 1 1 400px;
}

.services-cta-asymmetric {
    padding: 80px 6%;
    background-color: #f7f9fb;
}

.cta-box-offset {
    max-width: 650px;
    margin-left: 10%;
    padding: 50px;
    background-color: #1a5490;
}

.cta-box-offset h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.cta-btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.contact-hero-split {
    padding: 100px 6% 80px;
    background-color: #f7f9fb;
}

.contact-hero-content h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 800;
    max-width: 600px;
}

.contact-hero-content p {
    font-size: 20px;
    color: #4a5568;
    max-width: 650px;
}

.contact-details-asymmetric {
    display: flex;
    flex-wrap: wrap;
    padding: 90px 6%;
    background-color: #ffffff;
    gap: 40px;
}

.contact-info-block {
    flex: 1 1 280px;
    padding: 35px;
    background-color: #f7f9fb;
}

.contact-block-1 {
    margin-top: 0;
}

.contact-block-2 {
    margin-top: 40px;
}

.contact-block-3 {
    margin-top: 20px;
}

.contact-info-block h2 {
    font-size: 24px;
    color: #1a5490;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.contact-visual-block {
    flex: 1 1 350px;
    margin-top: -50px;
    background-color: #e8edf2;
}

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

.contact-additional-info {
    padding: 80px 6%;
    background-color: #f7f9fb;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.info-card {
    flex: 1 1 300px;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.info-card-left {
    margin-top: 0;
}

.info-card-right {
    margin-top: 30px;
}

.info-card-center {
    margin-top: 15px;
}

.info-card h3 {
    font-size: 20px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.contact-cta-offset {
    padding: 80px 6% 80px 12%;
    background-color: #1a5490;
    text-align: center;
}

.contact-cta-offset h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta-offset p {
    font-size: 18px;
    color: #e8edf2;
    margin-bottom: 30px;
}

.thanks-hero-centered {
    padding: 100px 6% 80px;
    background-color: #f7f9fb;
    text-align: center;
}

.thanks-content-main h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-details-asymmetric {
    display: flex;
    flex-wrap: wrap;
    padding: 90px 6%;
    background-color: #ffffff;
    gap: 40px;
}

.thanks-info-block {
    flex: 1 1 300px;
    padding: 35px;
    background-color: #f7f9fb;
}

.thanks-block-1 {
    margin-top: 0;
}

.thanks-block-2 {
    margin-top: 35px;
}

.thanks-block-3 {
    margin-top: 15px;
}

.thanks-info-block h2 {
    font-size: 24px;
    color: #1a5490;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.thanks-additional-resources {
    padding: 80px 6%;
    background-color: #f7f9fb;
}

.thanks-additional-resources h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

.resource-card {
    flex: 1 1 300px;
    padding: 35px;
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.resource-card h3 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

.resource-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.resource-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.thanks-confirmation-notice {
    padding: 60px 6%;
    background-color: #ffffff;
}

.notice-content-offset {
    max-width: 800px;
    margin-left: 10%;
    padding: 40px;
    background-color: #fff8e1;
    border-left: 5px solid #ffa726;
}

.notice-content-offset h3 {
    font-size: 24px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

.notice-content-offset p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page-header {
    padding: 80px 6% 60px;
    background-color: #f7f9fb;
}

.legal-page-header h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 800;
}

.last-updated {
    font-size: 16px;
    color: #6c757d;
}

.legal-content {
    padding: 60px 6% 90px;
    background-color: #ffffff;
}

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

.legal-text-container h2 {
    font-size: 32px;
    color: #1a5490;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 700;
}

.legal-text-container h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 700;
}

.legal-text-container p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text-container ul,
.legal-text-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-text-container ul li,
.legal-text-container ol li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-text-container a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-text-container strong {
    color: #2c3e50;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table thead {
    background-color: #f7f9fb;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e1e4e8;
}

.cookies-table th {
    font-weight: 700;
    color: #1a5490;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-content-offset h1,
    .about-hero-text h1,
    .services-hero-minimal h1,
    .thanks-content-main h1 {
        font-size: 36px;
    }

    .section-header-offset,
    .team-irregular-layout h2 {
        padding-left: 0;
    }

    .service-card.card-large,
    .service-card.card-medium,
    .service-card.card-small {
        flex: 1 1 100%;
    }

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

    .value-pos-1,
    .value-pos-2,
    .value-pos-3,
    .value-pos-4 {
        margin-top: 0;
    }

    .trust-block-1,
    .trust-block-2,
    .trust-block-3 {
        margin-top: 0;
    }

    .contact-block-1,
    .contact-block-2,
    .contact-block-3 {
        margin-top: 0;
    }

    .thanks-block-1,
    .thanks-block-2,
    .thanks-block-3 {
        margin-top: 0;
    }

    .info-card-left,
    .info-card-right,
    .info-card-center {
        margin-top: 0;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .cta-box-offset,
    .notice-content-offset {
        margin-left: 0;
    }
}