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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffc107;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
}

.hero-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.value-proposition,
.approach-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.image-block {
    flex: 1;
    background-color: #e0e0e0;
}

.image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-showcase {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-color: #d0d0d0;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 25px 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.service-price {
    margin: 0 25px 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.select-service {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 50px auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.testimonials-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.testimonial-card {
    flex: 1;
    padding: 35px;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #777;
    font-size: 15px;
}

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 20px;
    text-align: center;
}

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

.cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px 40px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.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-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

.about-hero {
    background-color: var(--light-bg);
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 22px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.about-image-wrapper {
    flex: 1;
    background-color: #e0e0e0;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.values-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.services-header {
    background-color: var(--light-bg);
    padding: 80px 20px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-header p {
    font-size: 22px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-detail-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0;
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 25px;
}

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

.thanks-container .cta-primary {
    margin-top: 30px;
}

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

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

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

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

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

.legal-container ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

#cookieBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
}

.hero-right {
    flex: 1;
    background-color: #e0e0e0;
}

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

.approach-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.approach-left {
    flex: 1;
    background-color: #e0e0e0;
}

.approach-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.approach-right {
    flex: 1;
}

.approach-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.approach-right p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.price {
    margin: 0 25px 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.testimonial-left {
    flex: 1;
}

.testimonial-left h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonial-block {
    margin-bottom: 35px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.testimonial-right {
    flex: 1;
    background-color: #e0e0e0;
}

.testimonial-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.form-section {
    background-color: var(--primary-color);
    padding: 80px 20px;
}

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

.form-left {
    flex: 1;
    color: #fff;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    padding: 12px 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 16px;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px 35px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-email {
    color: #ccc;
    margin-top: 15px;
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #999;
    line-height: 1.7;
}

.page-hero {
    background-color: var(--light-bg);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 22px;
    color: #666;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

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

.about-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.about-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.expertise-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

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

.expertise-left {
    background-color: #e0e0e0;
}

.expertise-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.expertise-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-about,
.cta-services {
    background-color: var(--primary-color);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.cta-about h2,
.cta-services h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-about p,
.cta-services p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-detail-left {
    background-color: #e0e0e0;
}

.service-detail-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features div {
    font-size: 16px;
    color: #555;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.info-note {
    font-style: italic;
    color: #777;
}

.contact-image {
    flex: 1;
    background-color: #e0e0e0;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    padding: 60px 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

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

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

.service-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.service-info p {
    font-size: 18px;
    color: #2e7d32;
}

@media (max-width: 968px) {
    .hero-split,
    .split-layout,
    .split-layout.reverse,
    .testimonials-grid,
    .footer-content,
    .contact-info-grid,
    .about-split,
    .values-grid,
    .service-detail,
    .service-detail:nth-child(even),
    .approach-section,
    .testimonials-split,
    .form-container,
    .expertise-section,
    .service-detail-split,
    .service-detail-split.reverse,
    .contact-split {
        flex-direction: column;
    }

    .hero-content h1,
    .hero-left h1,
    .about-hero h1,
    .contact-header h1,
    .services-header h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-container,
    .header-container {
        flex-wrap: wrap;
    }

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