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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

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

.header-right {
    display: flex;
    gap: 35px;
}

.header-right a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #3498db;
}

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

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.secondary-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

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

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

.intro-text {
    flex: 1;
}

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

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

.intro-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.price {
    padding: 0 25px 20px;
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.select-service-btn {
    margin: 0 25px 25px;
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

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

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

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

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d5dbdb;
    border-radius: 6px;
    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: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.value-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.value-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.value-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.text-link {
    display: inline-block;
    margin-top: 15px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 14px;
}

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

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 50px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

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

.cookie-btn.accept:hover {
    background-color: #229954;
}

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

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    padding: 80px 50px;
    background-color: #ecf0f1;
    text-align: center;
}

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

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

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

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

.content-text {
    flex: 1;
}

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

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

.content-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.content-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.expertise-section {
    padding: 80px 50px;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.expertise-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

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

.approach-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.values-section {
    padding: 80px 50px;
    background-color: #ecf0f1;
}

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

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

.value-block {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e50;
}

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

.cta-section {
    padding: 80px 50px;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-button:hover {
    background-color: #ecf0f1;
}

.services-detail-section {
    padding: 60px 50px;
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 80px;
}

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

.service-detail-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    max-height: 500px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.price-block {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

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

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
}

.contact-section {
    padding: 60px 50px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
}

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

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

.email-text {
    color: #555;
    font-weight: 500;
}

.map-section {
    padding: 60px 50px;
    background-color: #f8f9fa;
    text-align: center;
}

.map-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.map-section > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-section {
    padding: 60px 50px;
    background-color: #ffffff;
}

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

.response-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 50px;
}

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

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

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

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

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

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

.legal-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #d5dbdb;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #d5dbdb;
}

.cookie-table th {
    background-color: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

.thanks-section {
    padding: 100px 50px;
    background-color: #ffffff;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
}

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

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

#serviceConfirmation {
    font-weight: 600;
    color: #3498db;
}

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

.next-steps-section {
    padding: 80px 50px;
    background-color: #f8f9fa;
}

.next-steps-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .value-split-reverse,
    .content-split,
    .approach-split-reverse,
    .service-detail-split,
    .service-detail-split-reverse {
        flex-direction: column;
    }

    .hero-image,
    .intro-image,
    .value-image,
    .content-image,
    .approach-image,
    .service-detail-image {
        min-height: 400px;
    }

    .values-layout,
    .steps-grid {
        flex-direction: column;
    }

    .service-card,
    .expertise-item,
    .contact-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content,
    .intro-section,
    .services-section,
    .form-section,
    .value-section,
    .footer {
        padding: 50px 30px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}