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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --light-bg: #f4f4f4;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --border-radius: 8px;
}

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-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
    background-color: var(--light-bg);
}

.hero-content-offset {
    flex: 1;
    padding: 80px 8% 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-image-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--light-bg);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

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

.intro-offset {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background-color: var(--white);
    align-items: center;
}

.intro-text-block {
    flex: 2;
    padding-left: 5%;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.intro-stats-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background-color: var(--light-bg);
    border-left: 5px solid var(--accent-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 5px;
}

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

.services-header-irregular {
    text-align: left;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-header-irregular h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.services-header-irregular p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: calc(33.333% - 27px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card.offset-left {
    margin-left: -20px;
}

.service-card.offset-right {
    margin-right: -20px;
}

.service-card.offset-center {
    margin-top: 30px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--light-bg);
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 25px 20px;
}

.btn-select-service {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.form-section-irregular {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.form-wrapper-asymmetric {
    max-width: 700px;
    margin: 0 0 0 auto;
    margin-right: 10%;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-intro {
    margin-bottom: 35px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: var(--text-light);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #d63851;
    transform: scale(1.02);
}

.trust-section-offset {
    padding: 100px 10% 100px 5%;
    background-color: var(--white);
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-points-irregular {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-point {
    flex: 1;
    min-width: 250px;
}

.trust-point:nth-child(2) {
    margin-top: 40px;
}

.trust-point h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.cta-floating {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c73b55 100%);
    text-align: center;
}

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

.cta-content-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.cta-content-asymmetric p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--white);
}

.cta-content-asymmetric .cta-secondary {
    background-color: var(--white);
    color: var(--accent-color);
    border: none;
}

.cta-content-asymmetric .cta-secondary:hover {
    background-color: var(--light-bg);
}

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

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 46, 0.98);
    padding: 25px 5%;
    z-index: 1000;
    box-shadow: 0 -5px 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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: var(--white);
    font-size: 15px;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-accept:hover {
    background-color: #d63851;
    transform: scale(1.05);
}

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

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

.about-hero-offset {
    padding: 100px 10% 60px 10%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.about-header-irregular {
    max-width: 800px;
}

.about-header-irregular h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-header-irregular p {
    font-size: 22px;
    line-height: 1.6;
}

.about-story-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background-color: var(--white);
    align-items: center;
}

.story-block-left {
    flex: 1;
    background-color: var(--light-bg);
}

.story-block-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.story-content-right {
    flex: 1;
    padding-right: 5%;
}

.story-content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.values-section-irregular {
    padding: 100px 10%;
    background-color: var(--light-bg);
}

.values-section-irregular h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.values-grid-offset {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-item:nth-child(2) {
    margin-top: 40px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.team-intro {
    max-width: 700px;
    margin-bottom: 50px;
    margin-left: 8%;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.team-image-block {
    background-color: var(--light-bg);
    height: 500px;
    overflow: hidden;
}

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

.experience-stats-irregular {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: var(--primary-color);
    justify-content: center;
    flex-wrap: wrap;
}

.stat-block {
    text-align: center;
    color: var(--white);
}

.stat-large {
    display: block;
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-block p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.approach-section-asymmetric {
    padding: 100px 10% 100px 15%;
    background-color: var(--light-bg);
}

.approach-content {
    max-width: 800px;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-about-offset {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--white);
}

.cta-about-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-about-offset p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.services-hero-irregular {
    padding: 100px 10%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.services-hero-irregular h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-hero-irregular p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.service-detail-card.left-aligned {
    margin-left: 0;
    margin-right: 8%;
}

.service-detail-card.right-aligned {
    margin-left: 8%;
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-image-wrap {
    flex: 1;
    min-width: 400px;
    background-color: var(--light-bg);
}

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

.service-info {
    flex: 1;
    padding: 50px;
}

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

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-info ul li {
    font-size: 15px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-info ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

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

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 10%;
    background-color: var(--light-bg);
    padding: 50px;
    border-radius: var(--border-radius);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.form-container-offset p {
    font-size: 17px;
    margin-bottom: 35px;
    color: var(--text-light);
}

.contact-hero-offset {
    padding: 100px 10%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.contact-hero-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero-offset p {
    font-size: 20px;
}

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

.contact-block-irregular {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-detail-offset {
    flex: 1;
    padding-left: 5%;
}

.contact-detail-offset h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image-offset {
    flex: 1;
    background-color: var(--light-bg);
}

.contact-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.contact-additional-irregular {
    padding: 80px 15% 80px 10%;
    background-color: var(--light-bg);
}

.additional-info-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.additional-info-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-map-section {
    padding: 0;
    background-color: var(--white);
}

.map-placeholder {
    height: 500px;
    background-color: var(--light-bg);
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta-offset {
    padding: 100px 10%;
    text-align: center;
    background-color: var(--white);
}

.contact-cta-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-cta-offset p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.thanks-hero-offset {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background-color: var(--light-bg);
    align-items: center;
    min-height: 70vh;
}

.thanks-content-asymmetric {
    flex: 1.2;
    padding-left: 5%;
}

.thanks-content-asymmetric h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
}

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

.thanks-info-block {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    margin-bottom: 35px;
    border-left: 5px solid var(--accent-color);
}

.thanks-info-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-info-block ol {
    padding-left: 20px;
}

.thanks-info-block ol li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-confirmation {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 35px;
}

.service-confirmation p {
    font-size: 17px;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-image-offset {
    flex: 1;
    background-color: var(--white);
}

.thanks-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    border-radius: var(--border-radius);
}

.contact-reminder-irregular {
    padding: 80px 10%;
    background-color: var(--white);
    text-align: center;
}

.contact-reminder-irregular h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-reminder-irregular p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page-content {
    padding: 80px 10%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
}

.legal-page-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

.legal-page-content h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-page-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-page-content ul,
.legal-page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page-content ul li,
.legal-page-content ol li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-page-content em {
    color: var(--text-light);
    font-style: italic;
}

.legal-page-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .service-card {
        width: calc(50% - 20px);
    }

    .service-detail-card.left-aligned,
    .service-detail-card.right-aligned {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 40px 30px;
        transition: right 0.4s;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        padding: 60px 5%;
    }

    .hero-content-offset h1 {
        font-size: 38px;
    }

    .intro-offset,
    .about-story-asymmetric,
    .contact-block-irregular,
    .thanks-hero-offset {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 0;
    }

    .service-detail-card.right-aligned {
        flex-direction: column;
    }

    .service-image-wrap {
        min-width: 100%;
    }

    .service-info {
        padding: 30px;
    }

    .form-wrapper-asymmetric,
    .form-container-offset {
        margin: 0;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }

    .hero-content-offset h1,
    .about-header-irregular h1,
    .services-hero-irregular h1,
    .contact-hero-offset h1,
    .thanks-content-asymmetric h1 {
        font-size: 32px;
    }

    .services-header-irregular,
    .team-intro,
    .intro-text-block {
        margin-left: 0;
        padding-left: 0;
    }

    .trust-points-irregular,
    .values-grid-offset,
    .footer-grid {
        flex-direction: column;
    }

    .trust-point:nth-child(2),
    .value-item:nth-child(2) {
        margin-top: 0;
    }

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

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

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