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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

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

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background: #4a90e2;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #357abd;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.nav-floating {
    background: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a90e2;
}

.hero-asymmetric {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 0 0 45%;
    color: #ffffff;
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transform: translateX(-2rem);
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1;
    transform: translateX(3rem) translateY(-1rem);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    background-color: #95a5a6;
}

.intro-story {
    padding: 5rem 2rem;
    background: #ffffff;
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-column-left {
    flex: 1;
    padding-right: 2rem;
}

.story-column-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-column-left p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #555;
}

.story-column-right {
    flex: 0 0 40%;
    transform: translateY(2rem);
}

.story-column-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #bdc3c7;
}

.trust-offset {
    padding: 4rem 2rem;
    background: #ecf0f1;
}

.trust-content-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-block-1 {
    flex: 1 1 350px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-1rem);
}

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

.trust-block-2 {
    flex: 0 0 400px;
    transform: translateY(2rem);
}

.trust-block-2 img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #95a5a6;
}

.trust-block-3 {
    flex: 1 1 300px;
    background: #4a90e2;
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transform: translateY(1rem);
}

.trust-block-3 p {
    font-size: 1.1rem;
}

.services-preview-asymmetric {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-title-offset {
    max-width: 1400px;
    margin: 0 auto 3rem 2rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-1 {
    flex: 1 1 calc(60% - 1rem);
    transform: translateX(-1.5rem);
}

.service-card-2 {
    flex: 1 1 calc(40% - 1rem);
    transform: translateY(2rem);
}

.service-card-3 {
    flex: 1 1 calc(35% - 1rem);
    transform: translateY(-1rem);
}

.service-card-4 {
    flex: 1 1 calc(65% - 1rem);
    transform: translateX(1rem);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #95a5a6;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1rem 1.5rem;
    color: #555;
}

.price-tag {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a90e2;
}

.testimonials-offset {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonials-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 300px;
}

.testimonial-1 {
    transform: translateY(-1rem);
}

.testimonial-2 {
    transform: translateY(2rem);
}

.testimonial-3 {
    transform: translateY(0.5rem);
}

.testimonial-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-block span {
    font-weight: 600;
    color: #4a90e2;
}

.cta-overlap-section {
    padding: 6rem 2rem;
    background: #2c3e50;
    position: relative;
}

.cta-content-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    transform: translateX(-2rem);
}

.cta-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-asymmetric p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #4a90e2;
    text-decoration: none;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4a90e2;
    color: #ffffff;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(2rem);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fef9e7;
    border-top: 3px solid #f39c12;
}

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

.disclaimer-content p {
    color: #555;
    line-height: 1.7;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem 2rem;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4a90e2;
}

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

.about-hero-offset {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.about-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text-main {
    flex: 1;
    color: #ffffff;
    transform: translateX(-1rem);
}

.about-text-main h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text-main p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.about-image-offset {
    flex: 0 0 45%;
    transform: translateY(2rem) translateX(1rem);
}

.about-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    background-color: #95a5a6;
}

.about-story-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.values-asymmetric {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-asymmetric h2 {
    max-width: 1300px;
    margin: 0 auto 3rem auto;
    font-size: 2.5rem;
    color: #2c3e50;
}

.values-grid-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 1rem);
}

.value-1 {
    transform: translateX(-1rem);
}

.value-2 {
    transform: translateY(1.5rem);
}

.value-3 {
    transform: translateY(-1rem);
}

.value-4 {
    transform: translateX(1rem);
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.value-block p {
    color: #555;
    line-height: 1.6;
}

.team-section-offset {
    padding: 5rem 2rem;
    background: #ffffff;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
    transform: translateX(2rem);
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.team-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.cta-about-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
}

.services-detailed {
    padding: 5rem 2rem;
    background: #ffffff;
}

.service-item-offset {
    max-width: 1300px;
    margin: 0 auto 5rem auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-item-1 {
    transform: translateX(-2rem);
}

.service-item-2 {
    transform: translateX(2rem);
}

.service-item-3 {
    transform: translateX(-1rem);
}

.service-item-4 {
    transform: translateX(1.5rem);
}

.service-item-5 {
    transform: translateX(-1.5rem);
}

.service-item-6 {
    transform: translateX(1rem);
}

.service-image-left,
.service-image-right {
    flex: 0 0 45%;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #95a5a6;
}

.service-text-left,
.service-text-right {
    flex: 1;
}

.service-text-left h2,
.service-text-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-text-left p,
.service-text-right p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.service-text-left ul,
.service-text-right ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-text-left ul li,
.service-text-right ul li {
    margin-bottom: 0.8rem;
    color: #555;
}

.price-display {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #ecf0f1;
    border-radius: 6px;
    display: inline-block;
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a90e2;
}

.services-cta {
    padding: 4rem 2rem;
    background: #2c3e50;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
}

.contact-info-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-grid-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-block {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 1rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-address {
    transform: translateY(-1rem);
}

.contact-hours {
    transform: translateY(1.5rem);
}

.contact-email {
    transform: translateX(-1rem);
}

.contact-directions {
    transform: translateX(1rem);
}

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

.contact-block p {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.email-display {
    font-weight: 600;
    color: #4a90e2;
    font-size: 1.1rem;
}

.contact-map-placeholder {
    padding: 3rem 2rem;
    background: #ecf0f1;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-placeholder {
    background: #95a5a6;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-additional {
    padding: 4rem 2rem;
    background: #ffffff;
}

.contact-additional-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.contact-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #27ae60;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 0 0 40%;
}

.thanks-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #95a5a6;
}

.thanks-next-steps {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #4a90e2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-item p {
    color: #555;
    line-height: 1.6;
}

.legal-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

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

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

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-offset-container,
    .story-wrapper,
    .about-content-wrapper,
    .thanks-container,
    .service-item-offset {
        flex-direction: column;
    }

    .hero-text-block,
    .hero-image-overlap,
    .about-text-main,
    .about-image-offset,
    .service-image-left,
    .service-image-right,
    .service-text-left,
    .service-text-right {
        flex: 1 1 100%;
        transform: none;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4 {
        flex: 1 1 100%;
        transform: none;
    }

    .value-block {
        flex: 1 1 100%;
        transform: none;
    }

    .form-container-offset,
    .team-content {
        transform: none;
    }

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

@media (max-width: 768px) {
    .hero-text-block h1,
    .about-text-main h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .story-column-left h2,
    .values-asymmetric h2,
    .services-title-offset,
    .team-content h2,
    .next-steps-content h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1 1 100%;
    }

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