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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d8ca8;
    --accent-color: #57c4e5;
    --dark-color: #0f3443;
    --light-bg: #f5f9fa;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

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

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2d3e50;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    right: 60px;
    color: var(--white);
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.story-intro {
    padding: 100px 60px;
    background-color: var(--white);
}

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

.narrow-content p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.image-text-layer {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 120px 0;
    background-color: var(--light-bg);
    position: relative;
}

.image-text-layer img {
    width: 55%;
    height: 600px;
    object-fit: cover;
    background-color: #3d5a6b;
}

.layer-text-box {
    position: absolute;
    right: 80px;
    background-color: var(--white);
    padding: 60px 50px;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.layer-text-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.layer-text-box p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.inline-cta {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.testimony-visual {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    background-color: var(--dark-color);
}

.quote-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    color: var(--white);
}

.quote-block blockquote {
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 25px;
}

.quote-block cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.testimony-visual img {
    flex: 1;
    object-fit: cover;
    background-color: #4a6272;
}

.insight-reveal {
    padding: 120px 60px;
    background-color: var(--white);
}

.wide-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-reveal h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--dark-color);
    font-weight: 700;
}

.insight-grid {
    display: flex;
    gap: 50px;
}

.insight-card {
    flex: 1;
    text-align: center;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.immersive-image {
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #3a4f5e;
}

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

.problem-amplify {
    padding: 120px 60px;
    background-color: #f8f9fa;
}

.centered-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: var(--dark-color);
    font-weight: 700;
}

.centered-block p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.solution-bridge {
    padding: 0;
    background-color: var(--white);
}

.split-visual-content {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.split-text {
    flex: 1;
    padding: 80px 70px;
}

.split-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-visual-content img {
    flex: 1;
    height: 600px;
    object-fit: cover;
    background-color: #495c68;
}

.services-preview {
    padding: 120px 60px;
    background-color: var(--light-bg);
}

.services-preview h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-cards-visual {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #3e5563;
}

.service-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 25px 15px;
}

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

.select-service-btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--primary-color);
}

.trust-layer {
    padding: 100px 60px;
    background-color: var(--dark-color);
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.trust-content p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.form-section {
    padding: 120px 60px;
    background-color: var(--white);
}

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

.form-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.form-row input,
.form-row select {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.selected-service-display {
    background-color: var(--light-bg);
    padding: 20px;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.selected-service-display p {
    font-size: 16px;
    color: var(--text-dark);
}

.submit-btn {
    padding: 18px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.final-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #2f4450;
}

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

.final-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}

.final-overlay-text p {
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.main-footer {
    background-color: #1a2530;
    color: var(--white);
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-color);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 37, 48, 0.98);
    color: var(--white);
    padding: 25px 40px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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: 30px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

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

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

.page-hero-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-top: 70px;
    background-color: #2e4251;
}

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

.page-hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: var(--white);
}

.page-hero-overlay h1 {
    font-size: 54px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.about-intro {
    padding: 100px 60px;
    background-color: var(--white);
}

.about-visual-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.about-text-side {
    flex: 1;
}

.about-text-side h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
}

.about-text-side p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-visual-split img {
    flex: 1;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #3f5664;
}

.mission-block {
    padding: 100px 60px;
    background-color: var(--white);
}

.team-approach {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.team-approach h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark-color);
    font-weight: 700;
}

.approach-cards {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    flex: 1;
    background-color: var(--white);
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c3f4e;
}

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

.values-overlay {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 500px;
}

.values-overlay h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.values-overlay ul {
    list-style: none;
}

.values-overlay ul li {
    font-size: 22px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.values-overlay ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 28px;
    color: var(--accent-color);
}

.about-cta {
    padding: 100px 60px;
    background-color: var(--white);
}

.primary-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.services-intro {
    padding: 100px 60px 60px;
    background-color: var(--white);
}

.services-detailed {
    padding: 60px;
    background-color: var(--white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 50px;
    background-color: var(--light-bg);
}

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

.service-detail-image {
    flex: 0 0 450px;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #3c5462;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 16px;
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
}

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

.popular-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 15px;
}

.services-cta {
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.contact-content {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.contact-info-block > p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    background-color: #3d5563;
}

.contact-additional {
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.contact-additional a {
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-hero {
    padding: 150px 60px 100px;
    background-color: var(--light-bg);
    min-height: 80vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--white);
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.thanks-details p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-details ul {
    list-style: none;
    margin-left: 20px;
}

.thanks-details ul li {
    font-size: 16px;
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-light);
}

.thanks-details ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.thanks-service-info {
    background-color: var(--white);
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
    display: none;
}

.thanks-service-info p {
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.thanks-next-steps p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.secondary-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 150px 60px 100px;
    background-color: var(--white);
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin: 50px 0 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0 20px 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

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

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

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 700;
    color: var(--dark-color);
}

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

@media (max-width: 1024px) {
    .floating-nav {
        padding: 15px 30px;
    }

    .hero-overlay {
        left: 30px;
        right: 30px;
    }

    .hero-overlay h1 {
        font-size: 48px;
    }

    .image-text-layer {
        flex-direction: column;
    }

    .image-text-layer img {
        width: 100%;
        height: 400px;
    }

    .layer-text-box {
        position: static;
        margin: 30px;
    }

    .testimony-visual {
        flex-direction: column;
    }

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

    .service-cards-visual {
        flex-direction: column;
    }

    .split-visual-content {
        flex-direction: column;
    }

    .split-visual-content img {
        width: 100%;
        height: 400px;
    }

    .about-visual-split {
        flex-direction: column;
    }

    .about-visual-split img {
        max-width: 100%;
    }

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

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

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

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

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

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

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .story-intro,
    .about-intro,
    .services-intro {
        padding: 60px 30px;
    }

    .narrow-content p {
        font-size: 17px;
    }

    .centered-block h2 {
        font-size: 32px;
    }

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

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