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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

.navbar {
    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: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 650px;
}

.hero-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

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

.hero-image {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 100px 80px;
    background: #f8f9fa;
}

.intro-split {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text {
    flex: 1.3;
}

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

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.intro-stats {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.services-preview {
    padding: 100px 80px;
    background: #ffffff;
}

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

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

.section-header-center p {
    font-size: 20px;
    color: #666;
}

.service-split {
    display: flex;
    margin-bottom: 80px;
    min-height: 500px;
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail {
    flex: 1;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.service-detail h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
}

.service-select-btn {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    align-self: flex-start;
}

.service-select-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.cta-box-center {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: #ffffff;
    border-radius: 20px;
    margin-top: 40px;
}

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

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

.cta-button-secondary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.approach-section {
    padding: 100px 80px;
    background: #f8f9fa;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-image {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.approach-content {
    flex: 1;
    padding: 70px 80px;
    background: #ffffff;
}

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

.approach-step {
    margin-bottom: 40px;
}

.approach-step h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #667eea;
}

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

.testimonials-section {
    padding: 100px 80px;
    background: #ffffff;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 48px;
    margin-bottom: 70px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 700;
    color: #667eea;
    font-size: 16px;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 80px 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

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

.cookie-btn-accept:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

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

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.modal-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 20px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-buttons {
    display: flex;
    gap: 15px;
}

.submit-btn,
.cancel-btn {
    flex: 1;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

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

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

.cancel-btn {
    background: #e0e0e0;
    color: #555;
}

.cancel-btn:hover {
    background: #d0d0d0;
}

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

.page-hero-content {
    flex: 1;
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.page-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.page-hero-image {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

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

.story-split {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-content {
    flex: 1.3;
}

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

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.story-image {
    flex: 0.7;
    overflow: hidden;
    display: flex;
    border-radius: 12px;
}

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

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

.values-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.value-split {
    display: flex;
    margin-bottom: 60px;
    min-height: 400px;
}

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

.value-content {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.value-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #667eea;
}

.value-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.value-visual {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.value-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section {
    padding: 100px 80px;
    background: #ffffff;
}

.team-intro-split {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-intro-text {
    flex: 1;
}

.team-intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.team-intro-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    border-radius: 12px;
}

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

.approach-detail-section {
    padding: 100px 80px;
    background: #f8f9fa;
}

.approach-detail-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.approach-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-detail-image {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.approach-detail-list {
    flex: 1;
    padding: 70px 80px;
    background: #ffffff;
}

.approach-item {
    margin-bottom: 45px;
}

.approach-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #667eea;
}

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

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

.cta-content-centered {
    text-align: center;
    color: #ffffff;
}

.cta-content-centered h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.page-header-centered {
    text-align: center;
    padding: 100px 80px 60px;
    background: #f8f9fa;
}

.page-header-centered h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-header-centered p {
    font-size: 20px;
    color: #666;
}

.services-detail-section {
    padding: 60px 80px 100px;
    background: #ffffff;
}

.service-card-split {
    display: flex;
    margin-bottom: 100px;
    min-height: 550px;
}

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

.service-card-visual {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-info {
    flex: 1;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.service-card-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-card-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    line-height: 2;
    color: #555;
    padding-left: 5px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 30px;
}

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

.pricing-note-content {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.pricing-note-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-hero-section {
    padding: 100px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.contact-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-main-section {
    padding: 100px 80px;
    background: #ffffff;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
}

.contact-info-box {
    flex: 1;
    padding: 70px 80px;
    background: #f8f9fa;
}

.contact-info-box h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-detail-group {
    margin-bottom: 40px;
}

.contact-detail-group h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #667eea;
    font-weight: 700;
}

.contact-detail-group p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.contact-visual-box {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.location-section {
    padding: 100px 80px;
    background: #f8f9fa;
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.location-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.transport-info {
    display: flex;
    gap: 40px;
}

.transport-option {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
}

.transport-option h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #667eea;
}

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

.faq-contact-section {
    padding: 100px 80px;
    background: #ffffff;
}

.faq-contact-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

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

.cta-contact-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.thanks-section {
    padding: 100px 80px;
    background: #f8f9fa;
    min-height: 600px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #52c41a;
    color: #ffffff;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 40px;
}

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

.thanks-main-text {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.service-selected-text {
    font-size: 18px;
    color: #667eea;
}

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

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

.next-step {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    text-align: left;
}

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

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

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

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

.info-split {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.legal-page-section {
    padding: 100px 80px;
    background: #f8f9fa;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 80px;
    border-radius: 12px;
}

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

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #667eea;
}

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

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

.legal-section li {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 8px;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .service-split,
    .intro-split,
    .approach-split,
    .story-split,
    .value-split,
    .team-intro-split,
    .approach-detail-split,
    .service-card-split,
    .contact-split {
        flex-direction: column;
    }

    .service-split.reverse,
    .value-split.reverse,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .testimonials-grid,
    .transport-info,
    .info-split {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-content,
    .page-hero-content {
        padding: 60px 40px;
    }

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

    .section-header-center h2,
    .thanks-content h1 {
        font-size: 36px;
    }

    .service-detail,
    .approach-content,
    .service-card-info,
    .contact-info-box {
        padding: 50px 40px;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}