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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

.floating-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 200px;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #ecf0f1;
    line-height: 1.3;
}

.hero-offset {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-color: #ecf0f1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(236, 240, 241, 0.3), transparent);
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    margin-left: 5%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-asymmetric {
    display: flex;
    padding: 6rem 3rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.2;
    padding-right: 2rem;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

.intro-block-right {
    flex: 0.8;
    padding: 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin-top: 4rem;
}

.intro-stat {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.intro-insight {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.problem-layer {
    display: flex;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
    gap: 3rem;
    align-items: center;
}

.problem-visual {
    flex: 1;
    background-color: #bdc3c7;
}

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

.problem-content {
    flex: 1.3;
    padding: 2rem;
}

.problem-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.problem-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.insight-diagonal {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, #27ae60 0%, #16a085 100%);
    position: relative;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.insight-content-wrap {
    max-width: 900px;
    margin: 0 auto;
    transform: skewY(2deg);
    color: #ffffff;
    text-align: center;
}

.insight-content-wrap h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-content-wrap p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.insight-detail {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-top: 2rem;
}

.services-staggered {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-offset {
    margin-bottom: 4rem;
    margin-left: 15%;
    max-width: 600px;
}

.services-header-offset h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.6;
}

.service-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.service-card-2 {
    margin-left: 20%;
}

.service-card-3 {
    margin-left: 10%;
}

.service-card-4 {
    margin-left: 25%;
}

.service-card-5 {
    margin-left: 15%;
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-content {
    flex: 1.2;
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-layer {
    padding: 6rem 3rem;
    background-color: #34495e;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

.testimonial-offset {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 20%;
    padding: 3rem;
    background-color: #ffffff;
    border-left: 4px solid #27ae60;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.3rem;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    padding: 6rem 3rem;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    margin-right: 15%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

.form-group label {
    font-size: 0.95rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 4rem 3rem;
    background-color: #f8f9fa;
    border-top: 1px solid #ecf0f1;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 3rem 2rem;
}

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

.footer-brand-col {
    flex: 1.5;
    min-width: 250px;
}

.footer-brand-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: lowercase;
}

.footer-brand-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links-col,
.footer-legal-col {
    flex: 1;
    min-width: 150px;
}

.footer-links-col h5,
.footer-legal-col h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

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

.footer-links-col ul li,
.footer-legal-col ul li {
    margin-bottom: 0.7rem;
}

.footer-links-col a,
.footer-legal-col a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-col a:hover,
.footer-legal-col a:hover {
    color: #27ae60;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-hero {
    padding: 10rem 3rem 5rem;
    background-color: #ecf0f1;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.3rem;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story-offset {
    display: flex;
    padding: 6rem 3rem;
    gap: 4rem;
    align-items: center;
}

.story-image-block {
    flex: 1;
    background-color: #bdc3c7;
}

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

.story-text-block {
    flex: 1.2;
    padding: 2rem;
}

.story-text-block h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-text-block p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-diagonal {
    padding: 6rem 3rem;
    background-color: #f8f9fa;
    transform: skewY(-1.5deg);
    margin: 4rem 0;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(1.5deg);
}

.approach-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.approach-item h4 {
    font-size: 1.4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.approach-item p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.6;
}

.values-layer {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.values-layer h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-block {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-block p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

.team-offset {
    padding: 5rem 3rem;
    background-color: #34495e;
    color: #ffffff;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 20%;
}

.team-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-about {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.services-hero-offset {
    padding: 10rem 3rem 5rem;
    background-color: #ecf0f1;
    max-width: 900px;
    margin: 0 auto;
    margin-left: 15%;
}

.services-hero-offset h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.services-detail-staggered {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.service-detail-2 {
    margin-left: 18%;
}

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

.service-detail-4 {
    margin-left: 22%;
}

.service-detail-5 {
    margin-left: 12%;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-detail-content {
    flex: 1.3;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.services-cta-offset {
    padding: 5rem 3rem;
    background-color: #34495e;
    color: #ffffff;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    margin-right: 15%;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-hero-offset {
    padding: 10rem 3rem 5rem;
    background-color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto;
    margin-right: 15%;
}

.contact-hero-offset h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.contact-layout-asymmetric {
    display: flex;
    padding: 6rem 3rem;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding: 2rem;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.contact-detail h4 {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 0.7rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

.contact-visual-block {
    flex: 1.2;
    background-color: #ecf0f1;
}

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

.contact-note-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.contact-note-content {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 20%;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-note-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-note-content p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    padding: 4rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-detail {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service {
    font-size: 1.05rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-back-home:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-page {
    padding: 8rem 3rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .floating-nav {
        top: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }

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

    .hero-image-wrap {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-top: 2rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-block-right {
        margin-top: 0;
    }

    .problem-layer,
    .about-story-offset,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .service-card,
    .service-detail-card {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .services-header-offset,
    .services-hero-offset,
    .contact-hero-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .testimonial-block,
    .team-content,
    .contact-note-content,
    .services-cta-content,
    .form-container {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-block-left h2 {
        font-size: 1.8rem;
    }

    .floating-nav {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-points,
    .approach-grid,
    .values-blocks {
        flex-direction: column;
    }
}
