* {
    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: #ffffff;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-header {
    background-color: #2C5F7C;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

.hero-section {
    position: relative;
    background-color: #1a3d52;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 61, 82, 0.85), rgba(44, 95, 124, 0.7));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 600px;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: #E67E22;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.intro-block {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.lead-text {
    font-size: 21px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.story-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.split-content {
    flex: 1 1 500px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2C5F7C;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.split-visual {
    flex: 1 1 400px;
    background-color: #ecf0f1;
}

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

.problem-amplification {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.problem-amplification h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2C5F7C;
    text-align: center;
}

.problem-amplification p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-section {
    padding: 80px 0;
    background-color: #2C5F7C;
}

.insight-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.insight-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.insight-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C5F7C;
}

.insight-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.services-overview {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-header-offset {
    margin-bottom: 50px;
}

.section-header-offset h2 {
    font-size: 38px;
    color: #2C5F7C;
    margin-bottom: 15px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C5F7C;
}

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

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #E67E22;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2C5F7C;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a3d52;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C5F7C;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #E67E22;
    min-width: 280px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    color: #555;
}

.testimonial-card cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.trust-indicators {
    padding: 70px 0;
    background-color: #2C5F7C;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    text-align: center;
    color: #ffffff;
    flex: 1 1 200px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 16px;
    opacity: 0.9;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2C5F7C;
}

.form-wrapper > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.contact-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: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    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: #2C5F7C;
}

.submit-button {
    background-color: #E67E22;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #D35400;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff3cd;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
    text-align: center;
}

.main-footer {
    background-color: #1a3d52;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.email-display {
    word-break: break-all;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.page-hero {
    background-color: #2C5F7C;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-image-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.content-block {
    flex: 1 1 500px;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2C5F7C;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.image-block {
    flex: 1 1 400px;
    background-color: #ecf0f1;
}

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

.mission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #2C5F7C;
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    color: #34495e;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C5F7C;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2C5F7C;
}

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

.team-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #2C5F7C;
}

.section-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-column {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.team-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C5F7C;
}

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

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C5F7C;
}

.approach-split {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1 1 500px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.approach-image {
    flex: 1 1 400px;
    background-color: #ecf0f1;
}

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

.partners-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.partners-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #2C5F7C;
}

.partners-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.cta-section {
    padding: 80px 0;
    background-color: #2C5F7C;
}

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

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-item {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1 1 550px;
}

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

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #555;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-display {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #E67E22;
}

.price-label {
    font-size: 16px;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #E67E22;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}

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

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

.combination-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.combination-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.combination-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C5F7C;
}

.combination-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-content {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1 1 450px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2C5F7C;
}

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

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

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

.info-item .note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}

.contact-visual {
    flex: 1 1 450px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #ecf0f1;
    margin-bottom: 30px;
    border-radius: 8px;
}

.contact-cta-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #E67E22;
}

.contact-cta-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2C5F7C;
}

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

.contact-map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-map-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #2C5F7C;
}

.map-placeholder {
    background-color: #ecf0f1;
    padding: 100px 20px;
    text-align: center;
    border-radius: 8px;
    border: 2px dashed #bdc3c7;
}

.map-placeholder p {
    font-size: 18px;
    color: #7f8c8d;
}

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C5F7C;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    min-width: 280px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2C5F7C;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2C5F7C;
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.service-confirmation {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    font-size: 17px;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2C5F7C;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background-color: #2C5F7C;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2C5F7C;
}

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

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

.secondary-button {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.secondary-button:hover {
    background-color: #7f8c8d;
}

.contact-info-thanks {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-info-thanks h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: #2C5F7C;
}

.contact-info-thanks p {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: #555;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2C5F7C;
    text-align: center;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2C5F7C;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #555;
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

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

.legal-content a {
    color: #2C5F7C;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #E67E22;
}

.update-date {
    margin-top: 40px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #2C5F7C;
    color: #ffffff;
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

.cookies-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.cookies-table tbody tr:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
    }

    .main-nav {
        gap: 15px;
    }

    .split-layout,
    .approach-split,
    .contact-layout {
        gap: 30px;
    }

    .service-detail-item {
        gap: 30px;
    }

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