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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-light: #f1f1f1;
    --text-dark: #2d2d2d;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.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: 20px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--highlight-color);
    color: var(--text-light);
}

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

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

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

.main-header {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

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

.main-nav a:hover {
    color: var(--highlight-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--highlight-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: var(--bg-gray);
    border-radius: 4px;
    font-weight: 500;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-gray);
}

.hero-text-block {
    flex: 0 0 55%;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    background-color: #0a0a15;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-position: center;
    opacity: 0.9;
}

.problem-intro {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.text-column-narrow {
    flex: 0 0 45%;
    padding-left: 60px;
}

.text-column-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.text-column-narrow p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.image-overlay-right {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background-color: var(--bg-gray);
}

.image-overlay-right img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.insight-block {
    padding: 80px 40px;
    background-color: var(--accent-color);
    position: relative;
}

.floating-card {
    max-width: 900px;
    margin: 0 auto 0 120px;
    background-color: var(--bg-light);
    padding: 60px 70px;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
}

.floating-card h3 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.floating-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}

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

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 60px 60px;
}

.section-header-left h2 {
    font-size: 46px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 800;
}

.section-header-left p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    flex: 0 0 calc(33.333% - 27px);
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.service-card.card-1 {
    transform: rotate(-1deg);
}

.service-card.card-2 {
    transform: translateY(20px) rotate(0.5deg);
}

.service-card.card-3 {
    transform: rotate(-0.5deg);
}

.service-card.card-4 {
    transform: translateY(-15px) rotate(1deg);
}

.service-card.card-5 {
    transform: rotate(-0.8deg);
}

.service-card.card-6 {
    transform: translateY(10px) rotate(0.3deg);
}

.service-card:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-gray);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 24px 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    color: var(--highlight-color);
    margin: 0 24px 16px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.select-service.selected {
    background-color: var(--highlight-color);
}

.testimonial-offset {
    padding: 100px 40px;
    background-color: var(--secondary-color);
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto 0 150px;
    text-align: left;
}

.testimonial-wrapper blockquote {
    font-size: 28px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.testimonial-wrapper blockquote::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    left: -10px;
    top: -20px;
    color: var(--highlight-color);
    line-height: 1;
}

.testimonial-wrapper cite {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    display: block;
    padding-left: 40px;
}

.form-section {
    padding: 100px 40px;
    background-color: var(--bg-gray);
}

.form-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro-left {
    flex: 0 0 40%;
    padding-top: 20px;
}

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

.form-intro-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-form-right {
    flex: 1;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.service-display {
    padding: 14px 16px;
    background-color: var(--bg-gray);
    border-radius: 6px;
    color: #666;
    font-size: 15px;
}

.service-display.selected {
    background-color: #e8f5e9;
    color: #2e7d32;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover:not(:disabled) {
    background-color: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: var(--highlight-color);
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: var(--bg-gray);
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    background-color: var(--bg-light);
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

.service-confirmation {
    background-color: var(--bg-gray);
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

.about-hero {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.about-intro-offset {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    padding-left: 60px;
    max-width: 900px;
}

.about-intro-offset h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 800;
}

.about-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.about-image-float {
    max-width: 1400px;
    margin: 0 auto 0 200px;
    background-color: var(--bg-gray);
}

.about-image-float img {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.philosophy-section {
    padding: 100px 40px;
    background-color: var(--bg-gray);
}

.philosophy-container {
    max-width: 1000px;
    margin: 0 auto 0 120px;
}

.philosophy-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

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

.approach-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-card {
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    flex: 0 0 calc(50% - 20px);
    min-width: 300px;
    max-width: 500px;
}

.approach-card.offset-card {
    transform: translateY(20px);
}

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

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.values-offset {
    padding: 100px 40px;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.values-wrapper {
    max-width: 1100px;
    margin: 0 auto 0 100px;
}

.values-wrapper h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h4 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--highlight-color);
    font-weight: 700;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.services-page-hero {
    padding: 100px 40px 60px;
    background-color: var(--bg-gray);
}

.services-intro-asymmetric {
    max-width: 1400px;
    margin: 0 auto 0 80px;
}

.services-intro-asymmetric h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.services-intro-asymmetric p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
}

.services-detailed {
    padding: 60px 40px 100px;
    background-color: var(--bg-light);
}

.service-detail-block {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 48%;
    background-color: var(--bg-gray);
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-detail-text {
    flex: 1;
}

.service-detail-text.offset-right {
    margin-right: -40px;
}

.service-detail-text.offset-left {
    margin-left: -40px;
}

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

.service-detail-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.price-display {
    font-size: 32px;
    font-weight: 800;
    color: var(--highlight-color);
    margin: 24px 0;
}

.cta-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-bottom {
    padding: 80px 40px;
    background-color: var(--accent-color);
    text-align: center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.cta-wrapper h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-wrapper p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
}

.btn-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.contact-page {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.contact-asymmetric {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.contact-intro {
    margin-bottom: 60px;
    padding-left: 60px;
}

.contact-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.contact-intro p {
    font-size: 19px;
    color: #666;
}

.contact-details-offset {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
    margin-left: 80px;
}

.contact-block {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-cta-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: var(--bg-gray);
    border-radius: 12px;
}

.contact-cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-cta-section p {
    font-size: 17px;
    color: #666;
    margin-bottom: 28px;
}

.btn-contact {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 80px 40px 100px;
    background-color: var(--bg-light);
}

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

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

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

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

.legal-container ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.legal-container a {
    color: var(--highlight-color);
    text-decoration: none;
}

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

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #999;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-text-block {
        flex: 1;
        padding: 60px 40px;
    }

    .hero-image-offset {
        height: 400px;
    }

    .offset-container {
        flex-direction: column;
        gap: 40px;
    }

    .text-column-narrow {
        flex: 1;
        padding-left: 0;
    }

    .image-overlay-right {
        margin-top: 0;
    }

    .floating-card {
        margin: 0 auto;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

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

    .service-detail-text.offset-right,
    .service-detail-text.offset-left {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .main-nav {
        gap: 20px;
    }

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

    .hero-subtext {
        font-size: 16px;
    }

    .text-column-narrow h2 {
        font-size: 30px;
    }

    .section-header-left h2 {
        font-size: 34px;
    }

    .service-card {
        flex: 1 1 100%;
        transform: none;
    }

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

    .testimonial-wrapper {
        margin: 0 auto;
    }

    .contact-form-right {
        padding: 30px;
    }

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

    .about-intro-offset,
    .about-image-float,
    .philosophy-container,
    .values-wrapper,
    .services-intro-asymmetric,
    .section-header-left {
        margin-left: auto;
        padding-left: 0;
    }

    .contact-details-offset {
        margin-left: 0;
    }

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