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

:root {
    --primary-color: #2E7D8F;
    --secondary-color: #FF6B6B;
    --accent-color: #F4A259;
    --dark-color: #1A1D29;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #546E7A;
    --border-color: #E0E0E0;
}

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

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

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

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

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

.ad-disclosure {
    background-color: var(--light-bg);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.nav-offset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 0;
}

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 80px 5%;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    z-index: 2;
    padding-left: 40px;
}

.hero-title-irregular {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--dark-color);
    line-height: 1.1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

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

.cta-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(46, 125, 143, 0.3);
    color: var(--white);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -60px;
    margin-right: -80px;
    background-color: #B8D4DA;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-staggered {
    padding: 120px 5% 80px;
    background-color: var(--white);
}

.container-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1;
    padding-top: 40px;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.intro-block-left p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.intro-block-right-offset {
    flex: 1;
    background-color: var(--light-bg);
    padding: 48px;
    border-radius: 12px;
    margin-top: 80px;
}

.intro-block-right-offset p {
    font-size: 17px;
    color: var(--text-primary);
}

.services-asymmetric {
    padding: 100px 5%;
    background-color: var(--light-bg);
}

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

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark-color);
    padding-left: 80px;
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

.card-offset-2 {
    margin-left: 120px;
}

.card-offset-3 {
    margin-left: 60px;
}

.card-offset-4 {
    margin-left: 160px;
}

.card-offset-5 {
    margin-left: 40px;
}

.service-image {
    flex: 0 0 380px;
    background-color: #D4E4E7;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.service-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.btn-select-service {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateX(4px);
}

.form-section-overlap {
    padding: 120px 5%;
    background-color: var(--white);
    position: relative;
}

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

.form-wrapper-asymmetric {
    background-color: var(--light-bg);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-left: 40px;
}

.form-wrapper-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.form-intro {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.selection-info {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

.selection-info p {
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.trust-section-staggered {
    padding: 100px 5%;
    background-color: var(--light-bg);
}

.trust-block-offset {
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 120px;
}

.trust-block-offset h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--dark-color);
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-item {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.trust-item:nth-child(2) {
    margin-left: 80px;
}

.trust-item:nth-child(3) {
    margin-left: 40px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.footer-asymmetric {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 5% 20px;
}

.footer-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-col-offset-1 {
    margin-top: 0;
}

.footer-col-offset-2 {
    margin-top: 20px;
}

.footer-col-offset-3 {
    margin-top: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    color: #B0BEC5;
    font-size: 15px;
}

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

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

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

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    color: #B0BEC5;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #78909C;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 24px 5%;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: var(--accent-color);
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background-color: var(--white);
    color: var(--dark-color);
}

.about-hero-offset,
.services-hero-offset,
.contact-hero-offset,
.legal-hero-offset {
    padding: 100px 5% 60px;
    background-color: var(--light-bg);
}

.about-hero-content,
.services-hero-content,
.contact-hero-content,
.legal-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
}

.page-title-irregular {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.page-intro {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
}

.about-story-asymmetric {
    padding: 100px 5%;
    background-color: var(--white);
}

.story-block-left {
    flex: 1;
    background-color: #C8DDE2;
}

.story-block-left img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

.story-text-offset {
    flex: 1;
    padding-left: 60px;
}

.story-text-offset h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.story-text-offset p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-staggered {
    padding: 100px 5%;
    background-color: var(--light-bg);
}

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

.value-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.value-offset-1 {
    margin-left: 0;
}

.value-offset-2 {
    margin-left: 100px;
}

.value-offset-3 {
    margin-left: 200px;
}

.value-offset-4 {
    margin-left: 60px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.team-section-asymmetric {
    padding: 100px 5%;
    background-color: var(--white);
}

.team-intro-offset {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-left: 60px;
}

.team-intro-offset h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.team-intro-offset p {
    font-size: 18px;
    color: var(--text-secondary);
}

.team-image-block {
    max-width: 1200px;
    margin: 0 auto 40px;
    background-color: #B8CDD3;
}

.team-image-block img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

.team-description-offset {
    max-width: 1000px;
    margin: 0 auto;
    margin-left: 200px;
}

.team-description-offset p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-overlap {
    padding: 100px 5%;
    background-color: var(--light-bg);
}

.mission-block-asymmetric {
    background-color: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-right: 100px;
}

.mission-block-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.mission-block-asymmetric p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-detailed-asymmetric {
    padding: 80px 5%;
    background-color: var(--white);
}

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-block-offset-1 {
    margin-left: 0;
}

.service-block-offset-2 {
    margin-left: 80px;
}

.service-block-offset-3 {
    margin-left: 40px;
}

.service-block-offset-4 {
    margin-left: 120px;
}

.service-block-offset-5 {
    margin-left: 60px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

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

.service-detail-content p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-detail-image {
    flex: 0 0 500px;
    background-color: #C8DDE2;
}

.service-image-left {
    order: -1;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.cta-section-overlap {
    padding: 100px 5%;
    background-color: var(--light-bg);
}

.cta-block-asymmetric {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    margin-left: 80px;
}

.cta-block-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-block-asymmetric p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-info-asymmetric {
    padding: 80px 5%;
    background-color: var(--white);
}

.contact-block-offset-1 {
    flex: 1;
    padding-right: 60px;
}

.contact-block-offset-1 h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.email-display {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 8px;
}

.contact-image-offset {
    flex: 1;
    background-color: #C8DDE2;
}

.contact-image-offset img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

.contact-additional-staggered {
    padding: 100px 5%;
    background-color: var(--light-bg);
}

.additional-info-block {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.additional-info-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.additional-info-block p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-cards-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.info-card-offset-1 {
    margin-left: 0;
}

.info-card-offset-2 {
    margin-left: 80px;
}

.info-card-offset-3 {
    margin-left: 160px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.visit-section-overlap {
    padding: 80px 5%;
    background-color: var(--white);
}

.visit-block-asymmetric {
    background-color: var(--light-bg);
    padding: 60px;
    border-radius: 16px;
    margin-right: 120px;
}

.visit-block-asymmetric h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.visit-block-asymmetric p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.thanks-section-asymmetric {
    padding: 100px 5%;
    background-color: var(--white);
    min-height: 60vh;
}

.thanks-content-offset {
    text-align: center;
    padding: 40px;
}

.thanks-icon {
    margin: 0 auto 32px;
    width: 80px;
}

.thanks-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.service-confirmation-box {
    background-color: var(--light-bg);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.service-confirmation-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-confirmation-box p {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

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

.thanks-next-steps ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-secondary);
    position: relative;
}

.thanks-next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.additional-resources-staggered {
    padding: 80px 5%;
    background-color: var(--light-bg);
}

.resources-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.resource-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.resource-offset-1 {
    margin-left: 0;
}

.resource-offset-2 {
    margin-left: 100px;
}

.resource-offset-3 {
    margin-left: 60px;
}

.resource-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-content-asymmetric {
    padding: 80px 5%;
    background-color: var(--white);
}

.legal-text {
    line-height: 1.8;
}

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

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

.legal-text h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0 24px 24px;
}

.legal-text ul li {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legal-update {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-secondary);
}

.gdpr-purpose,
.gdpr-right,
.cookie-type {
    background-color: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

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

.cookies-table thead {
    background-color: var(--light-bg);
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
    color: var(--dark-color);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .hero-content-offset {
        flex-direction: column;
    }

    .hero-title-irregular {
        font-size: 42px;
    }

    .hero-image-overlap {
        margin-right: 0;
    }

    .container-irregular {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 300px;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-left: 0;
    }

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

    .service-detail-image {
        flex: 0 0 auto;
    }
}

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

    .hero-title-irregular {
        font-size: 32px;
    }

    .page-title-irregular {
        font-size: 36px;
    }

    .section-title-offset {
        font-size: 32px;
        padding-left: 0;
    }

    .footer-content-irregular {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}