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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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 {
    flex: 1;
    margin: 0;
    font-size: 15px;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 500;
    border: 1px solid #ecf0f1;
    padding: 6px 14px;
    border-radius: 4px;
    background: #f8f9fa;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: #f8f9fa;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    background: #ffffff;
    padding: 0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image,
.intro-text {
    flex: 1;
    padding: 40px;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
}

.intro-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.intro-text {
    padding: 40px 60px;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.quality-indicators {
    padding: 80px 40px;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

.indicators-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.indicator-card {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.indicator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.indicator-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 16px;
    opacity: 0.8;
}

.indicator-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.services-split {
    display: flex;
    min-height: 700px;
    background: #f8f9fa;
}

.services-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-content > p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    background: #ffffff;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    white-space: nowrap;
}

.services-image {
    flex: 1;
    background: #2c3e50;
    overflow: hidden;
}

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

.expertise-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #ffffff;
}

.expertise-split.reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.expertise-content,
.expertise-image {
    flex: 1;
    padding: 40px 60px;
}

.expertise-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

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

.reference-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reference-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.expertise-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.form-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    color: #ffffff;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 18px;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    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: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.references {
    padding: 60px 40px;
    background: #f8f9fa;
}

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

.references-container h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.references-list {
    list-style: none;
    counter-reset: reference-counter;
    padding: 0;
}

.references-list li {
    counter-increment: reference-counter;
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
    line-height: 1.6;
}

.references-list li:before {
    content: "[" counter(reference-counter) "]";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #667eea;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.page-hero-split {
    display: flex;
    min-height: 500px;
    background: #f8f9fa;
}

.page-hero-split .hero-left {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.about-split {
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

.about-split.reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.about-image,
.about-text {
    flex: 1;
    padding: 40px;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.philosophy-section {
    padding: 80px 40px;
    background: #ffffff;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.philosophy-card {
    flex: 1;
    min-width: 300px;
    padding: 36px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.values-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.values-container h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.values-content-split {
    display: flex;
    gap: 60px;
}

.values-left,
.values-right {
    flex: 1;
}

.values-left p,
.values-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.services-detailed {
    padding: 40px;
}

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

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

.service-detail-content,
.service-detail-image {
    flex: 1;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
}

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

.service-includes {
    margin-top: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-includes ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 20px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.cta-content-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.contact-hero-split .hero-left {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.contact-details-split {
    display: flex;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.email-note {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 8px;
}

.hours-note {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 12px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-info-additional {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.info-additional-container h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.info-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.contact-cta-section {
    padding: 80px 40px;
    background: #ffffff;
}

.thanks-hero {
    padding: 80px 40px;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 60px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-confirmation {
    padding: 20px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-top: 24px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps {
    margin-bottom: 60px;
}

.thanks-next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #667eea;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #667eea;
    color: #ffffff;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.thanks-info {
    padding: 80px 40px;
    background: #ffffff;
}

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

.thanks-info-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.info-boxes {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 300px;
    padding: 28px;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-split,
    .expertise-split,
    .page-hero-split,
    .about-split,
    .service-detail-split,
    .contact-details-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .expertise-split.reverse,
    .about-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

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

    .values-content-split {
        flex-direction: column;
        gap: 32px;
    }
}

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

    .nav-links {
        display: none;
    }

    .hero-left {
        padding: 40px 24px;
    }

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

    .section-header-center h2 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .indicators-grid,
    .philosophy-grid,
    .steps-grid,
    .info-cards,
    .info-boxes {
        flex-direction: column;
    }
}