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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-gray: #ecf0f1;
    --medium-gray: #95a5a6;
    --dark-gray: #7f8c8d;
    --success-color: #2ecc71;
    --white: #ffffff;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 95%;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--medium-gray);
    padding: 0.3rem 0.8rem;
    background-color: var(--light-gray);
    border-radius: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

main {
    padding-top: 5rem;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-offset-block {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-text-primary {
    flex: 1;
    min-width: 300px;
    padding-left: 8%;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.hero-image-overlap {
    flex: 1.2;
    min-width: 400px;
    height: 500px;
    position: relative;
    margin-top: -3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.hero-cta-offset {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-left: 12%;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.intro-irregular {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

.intro-left-block {
    flex: 1.3;
    min-width: 300px;
    padding-right: 5%;
}

.intro-right-visual {
    flex: 1;
    min-width: 350px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.intro-right-visual img {
    width: 100%;
    height: 100%;
}

.services-staggered {
    padding: 8rem 2rem;
    background-color: var(--light-gray);
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 15%;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: var(--secondary-color);
}

.service-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    align-items: stretch;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-offset-1 {
    margin-left: 5%;
}

.service-offset-2 {
    margin-left: 15%;
    margin-right: 5%;
}

.service-offset-3 {
    margin-left: 8%;
}

.service-offset-4 {
    margin-right: 12%;
}

.service-visual {
    flex: 1;
    min-width: 280px;
    height: 300px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-content {
    flex: 1.5;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.form-section-diagonal {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.form-container-offset {
    flex: 1.2;
    min-width: 350px;
    margin-left: 8%;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    margin-bottom: 0.8rem;
}

.form-header p {
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-field input[readonly] {
    background-color: var(--light-gray);
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.form-visual-overlap {
    flex: 1;
    min-width: 350px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-visual-overlap img {
    width: 100%;
    height: 100%;
}

.about-overlap {
    padding: 7rem 2rem;
    background-color: var(--light-gray);
}

.about-content-block {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 10%;
}

.link-inline {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
}

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

.values-split {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

.values-text {
    flex: 1;
    min-width: 300px;
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.values-image {
    flex: 1.2;
    min-width: 400px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.values-image img {
    width: 100%;
    height: 100%;
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-block p,
.footer-block li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-block a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.page-hero-offset {
    padding: 10rem 2rem 4rem;
    background-color: var(--light-gray);
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 8%;
}

.page-hero-lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.about-story-irregular {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.story-block-primary {
    flex: 1.3;
    min-width: 300px;
}

.story-visual-offset {
    flex: 1;
    min-width: 350px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-visual-offset img {
    width: 100%;
    height: 100%;
}

.expertise-diagonal {
    padding: 7rem 2rem;
    background-color: var(--light-gray);
}

.expertise-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5%;
}

.expertise-highlights {
    margin-top: 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.highlight-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.highlight-item p {
    color: var(--secondary-color);
    margin: 0;
}

.approach-overlap {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-visual {
    flex: 1.2;
    min-width: 400px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-top: -4rem;
}

.approach-visual img {
    width: 100%;
    height: 100%;
}

.values-statement {
    padding: 7rem 2rem;
    background-color: var(--light-gray);
    text-align: center;
}

.values-statement h2 {
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2.5rem 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card:nth-child(even) {
    margin-top: 2rem;
}

.value-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--secondary-color);
    margin: 0;
}

.cta-section-offset {
    padding: 7rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.services-detailed {
    padding: 3rem 2rem 8rem;
}

.service-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding-left: 5%;
}

.service-intro p {
    font-size: 1.15rem;
    color: var(--secondary-color);
}

.services-list-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-right {
    flex-direction: row-reverse;
}

.service-centered {
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-full {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 8px;
}

.service-visual-large {
    flex: 1;
    min-width: 400px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-visual-large img {
    width: 100%;
    height: 100%;
}

.service-text {
    flex: 1.2;
    min-width: 300px;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--secondary-color);
}

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

.service-pricing {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price-label {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-services-contact {
    padding: 5rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
}

.cta-services-contact .cta-content h2 {
    color: var(--white);
}

.cta-services-contact .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-layout-split {
    padding: 3rem 2rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h1 {
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: var(--secondary-color);
    margin: 0;
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.contact-form-block {
    flex: 1.2;
    min-width: 350px;
}

.contact-form-detailed {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 8px;
}

.form-privacy {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.btn-submit-large {
    width: 100%;
    padding: 1.3rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit-large:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.location-visual {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 4rem;
    border-radius: 8px;
    overflow: hidden;
}

.location-visual img {
    width: 100%;
    height: 100%;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    color: var(--white);
}

.location-overlay p {
    margin: 0;
    font-size: 1.1rem;
}

.thanks-section {
    padding: 8rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.service-confirmation {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.thanks-next-steps h2 {
    margin-bottom: 1.5rem;
}

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

.thanks-next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--secondary-color);
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: transparent;
    color: var(--accent-color);
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.legal-page {
    padding: 3rem 2rem 6rem;
}

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

.legal-content {
    margin-top: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    color: var(--primary-color);
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin: 0.8rem 0;
    color: var(--secondary-color);
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-table th {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .hero-offset-block,
    .intro-irregular,
    .values-split,
    .about-story-irregular,
    .approach-overlap,
    .form-section-diagonal,
    .contact-layout-split {
        gap: 3rem;
    }

    .hero-image-overlap,
    .intro-right-visual,
    .values-image,
    .story-visual-offset,
    .approach-visual,
    .form-visual-overlap,
    .service-visual-large {
        height: 350px;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        padding: 0.6rem 1rem;
    }

    .nav-container {
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-text-primary {
        padding-left: 0;
    }

    .hero-cta-offset {
        padding-left: 0;
    }

    .section-header-offset {
        padding-left: 0;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4 {
        margin-left: 0;
        margin-right: 0;
    }

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

    .service-visual {
        width: 100%;
        min-width: 100%;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .about-content-block {
        padding-left: 0;
    }

    .service-intro {
        padding-left: 0;
    }

    .service-left,
    .service-right {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}