* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 17px;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8em;
}

h2 {
    font-size: 2.4em;
    color: #0d1b2a;
}

h3 {
    font-size: 1.9em;
    color: #1b263b;
}

h4 {
    font-size: 1.4em;
    color: #2c3e50;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e4620;
}

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

.main-header {
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.brand-name {
    font-size: 1.6em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #e0e1dd;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 2.2rem;
}

.main-nav a {
    color: #e0e1dd;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1b263b;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1e4620;
}

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

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

.hero-editorial {
    width: 100%;
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #0d1b2a;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.7) 50%, transparent 100%);
    padding: 4rem 2rem 3rem;
}

.hero-text {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h2 {
    color: #ffffff;
    font-size: 3.2em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.hero-text p {
    color: #e0e1dd;
    font-size: 1.4em;
    max-width: 700px;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-section {
    padding: 4rem 2rem;
}

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.intro-section h3 {
    font-size: 2.2em;
    margin-bottom: 1.2em;
    color: #0d1b2a;
}

.intro-section p {
    font-size: 1.15em;
    color: #2c3e50;
    line-height: 1.8;
}

.featured-grid {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-large {
    flex: 2;
    min-width: 400px;
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.feature-large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.feature-small {
    flex: 1;
    min-width: 300px;
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.feature-small img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.feature-content {
    padding: 2rem;
}

.feature-content h4 {
    font-size: 1.6em;
    margin-bottom: 0.8em;
    color: #0d1b2a;
}

.feature-content p {
    font-size: 1.05em;
    color: #415a77;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 800px;
    margin: 0 0 3rem 8%;
}

.section-header-offset h3 {
    font-size: 2.5em;
    color: #0d1b2a;
    margin-bottom: 0.6em;
}

.section-header-offset p {
    font-size: 1.15em;
    color: #415a77;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #2c5f2d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.card-header h4 {
    font-size: 1.4em;
    margin-bottom: 0;
    color: #0d1b2a;
    flex: 1;
}

.price-tag {
    font-size: 1.3em;
    font-weight: 700;
    color: #2c5f2d;
    white-space: nowrap;
}

.service-card p {
    font-size: 1.05em;
    color: #415a77;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-link {
    display: inline-block;
    color: #2c5f2d;
    font-weight: 600;
    padding: 0.8rem 1.6rem;
    border: 2px solid #2c5f2d;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.card-link:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.insights-section {
    padding: 5rem 2rem;
    background-color: #f1f3f5;
}

.two-column-editorial {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.column-text {
    flex: 1.2;
}

.column-text h3 {
    font-size: 2.2em;
    margin-bottom: 1em;
    color: #0d1b2a;
}

.column-text p {
    font-size: 1.1em;
    color: #2c3e50;
    line-height: 1.8;
}

.column-image {
    flex: 1;
    background-color: #e9ecef;
}

.column-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
}

.form-container-centered h3 {
    font-size: 2.3em;
    text-align: center;
    margin-bottom: 0.8em;
    color: #0d1b2a;
}

.form-intro {
    text-align: center;
    font-size: 1.1em;
    color: #415a77;
    margin-bottom: 2.5rem;
}

.request-form {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #1b263b;
    font-size: 1.05em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4620;
}

.trust-indicators {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.trust-indicators h3 {
    font-size: 2em;
    margin-bottom: 1em;
    color: #0d1b2a;
}

.trust-indicators p {
    font-size: 1.1em;
    color: #2c3e50;
    line-height: 1.8;
}

.main-footer {
    background-color: #0d1b2a;
    color: #e0e1dd;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.3em;
    margin-bottom: 1em;
}

.footer-column p {
    font-size: 0.95em;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #e0e1dd;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(224, 225, 221, 0.2);
}

.footer-bottom p {
    font-size: 0.9em;
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.services-page {
    min-height: 100vh;
}

.page-hero-small {
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-small h2 {
    color: #ffffff;
    font-size: 2.8em;
    margin-bottom: 0.5em;
}

.page-hero-small p {
    font-size: 1.2em;
    color: #e0e1dd;
}

.services-detailed-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #e9ecef;
}

.service-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-info {
    flex: 1.2;
}

.service-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.service-header-row h3 {
    font-size: 2em;
    margin-bottom: 0;
    color: #0d1b2a;
}

.service-price {
    font-size: 1.5em;
    font-weight: 700;
    color: #2c5f2d;
    white-space: nowrap;
}

.service-description {
    font-size: 1.1em;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #415a77;
    font-size: 1.05em;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.2em;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #1e4620;
}

.services-footer-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.services-footer-cta h3 {
    font-size: 2.2em;
    margin-bottom: 0.8em;
    color: #0d1b2a;
}

.services-footer-cta p {
    font-size: 1.15em;
    color: #415a77;
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c5f2d;
    font-weight: 600;
    border: 2px solid #2c5f2d;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.about-page {
    min-height: 100vh;
}

.about-hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #0d1b2a;
}

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

.about-hero-text {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    max-width: 900px;
}

.about-hero-text h2 {
    color: #ffffff;
    font-size: 3em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.about-content-flow {
    max-width: 1400px;
    margin: 0 auto;
}

.about-section-split {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.text-column-wide {
    max-width: 900px;
    margin: 0 auto;
}

.text-column-wide h3 {
    font-size: 2.3em;
    margin-bottom: 1em;
    color: #0d1b2a;
}

.text-column-wide p {
    font-size: 1.1em;
    color: #2c3e50;
    line-height: 1.8;
}

.about-section-asymmetric {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.image-block-offset {
    flex: 1;
    background-color: #e9ecef;
}

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

.text-block-narrow {
    flex: 1;
}

.text-block-narrow h3 {
    font-size: 2.2em;
    margin-bottom: 1em;
    color: #0d1b2a;
}

.text-block-narrow p {
    font-size: 1.1em;
    color: #2c3e50;
    line-height: 1.8;
}

.about-values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.centered-heading {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 2em;
    color: #0d1b2a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-block {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-top: 3px solid #2c5f2d;
}

.value-block h4 {
    font-size: 1.5em;
    margin-bottom: 0.8em;
    color: #0d1b2a;
}

.value-block p {
    font-size: 1.05em;
    color: #415a77;
    line-height: 1.7;
}

.about-team-section {
    padding: 5rem 2rem;
    background-color: #f1f3f5;
}

.content-narrow-center {
    max-width: 800px;
    margin: 0 auto;
}

.content-narrow-center h3 {
    font-size: 2.3em;
    margin-bottom: 1em;
    color: #0d1b2a;
    text-align: center;
}

.content-narrow-center p {
    font-size: 1.1em;
    color: #2c3e50;
    line-height: 1.8;
}

.about-approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.two-column-balanced {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.column-left h3,
.column-right h3 {
    font-size: 2em;
    margin-bottom: 1em;
    color: #0d1b2a;
}

.column-left p,
.column-right p {
    font-size: 1.1em;
    color: #2c3e50;
    line-height: 1.8;
}

.about-cta-section {
    padding: 4rem 2rem;
    background-color: #0d1b2a;
    text-align: center;
}

.about-cta-section h3 {
    color: #ffffff;
    font-size: 2.3em;
    margin-bottom: 0.8em;
}

.about-cta-section p {
    color: #e0e1dd;
    font-size: 1.15em;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4620;
}

.contact-page {
    min-height: 100vh;
}

.contact-intro {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-intro h2 {
    font-size: 2.8em;
    margin-bottom: 0.8em;
    color: #0d1b2a;
}

.contact-intro p {
    font-size: 1.15em;
    color: #415a77;
}

.contact-layout-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-primary-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.contact-image-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.contact-details-section {
    flex: 1;
    padding: 2rem 0;
}

.detail-group {
    margin-bottom: 2.5rem;
}

.detail-group h3 {
    font-size: 1.8em;
    margin-bottom: 0.8em;
    color: #0d1b2a;
}

.detail-group p {
    font-size: 1.1em;
    color: #2c3e50;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #1b263b;
}

.email-note {
    font-size: 0.95em;
    color: #6c757d;
    font-style: italic;
}

.contact-secondary-info {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-secondary-info h3 {
    font-size: 2.2em;
    margin-bottom: 2em;
    color: #0d1b2a;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
}

.info-item h4 {
    font-size: 1.4em;
    margin-bottom: 0.8em;
    color: #1b263b;
}

.info-item p {
    font-size: 1.05em;
    color: #415a77;
    line-height: 1.7;
}

.contact-footer-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.contact-footer-section h3 {
    font-size: 2em;
    margin-bottom: 0.8em;
    color: #0d1b2a;
}

.contact-footer-section p {
    font-size: 1.1em;
    color: #415a77;
}

.thanks-page {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.thanks-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h2 {
    font-size: 2.5em;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
}

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

.thanks-message p {
    font-size: 1.15em;
    color: #415a77;
    line-height: 1.7;
}

#serviceConfirmation {
    font-weight: 600;
    color: #2c5f2d;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.8em;
    margin-bottom: 1.2em;
    color: #0d1b2a;
    text-align: center;
}

.steps-list {
    list-style: decimal;
    padding-left: 2rem;
}

.steps-list li {
    font-size: 1.1em;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-note {
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.thanks-note p {
    font-size: 1.05em;
    color: #415a77;
}

.legal-page {
    min-height: 100vh;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-container h2 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
    color: #0d1b2a;
}

.legal-update {
    font-size: 0.95em;
    color: #6c757d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h3 {
    font-size: 1.9em;
    margin-bottom: 1em;
    color: #1b263b;
}

.legal-section h4 {
    font-size: 1.4em;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    color: #2c3e50;
}

.legal-section p {
    font-size: 1.05em;
    color: #2c3e50;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1.05em;
    color: #415a77;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-section strong {
    color: #1b263b;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #0d1b2a;
    border-bottom: 2px solid #dee2e6;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #2c3e50;
}

.cookies-table tbody tr:hover {
    background-color: #f8f9fa;
}

@media (max-width: 1024px) {
    .grid-container {
        flex-direction: column;
    }

    .feature-large,
    .feature-small {
        flex: 1;
        min-width: 100%;
    }

    .two-column-editorial {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .about-section-asymmetric {
        flex-direction: column;
    }

    .two-column-balanced {
        flex-direction: column;
    }

    .contact-primary-block {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-text h2 {
        font-size: 2.2em;
    }

    .hero-text p {
        font-size: 1.2em;
    }

    .section-header-offset {
        margin: 0 0 2rem 0;
    }

    .services-cards {
        flex-direction: column;
    }

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

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

    .values-grid {
        flex-direction: column;
    }

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

    .info-blocks {
        flex-direction: column;
    }

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

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

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}