* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-label {
    background-color: #f39c12;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #34495e;
}

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

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

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.intro-content-left {
    flex: 1;
}

.intro-content-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.intro-content-right {
    flex: 1;
    background-color: #bdc3c7;
}

.intro-content-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-preview {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

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

.service-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

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

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

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-left-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.form-right-content {
    flex: 1;
}

.main-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

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

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

.trust-section {
    padding: 80px 20px;
    background-color: #34495e;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
}

.testimonials-split {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #2c3e50;
    padding: 35px;
    border-radius: 8px;
}

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

.testimonial-author {
    color: #3498db;
    font-weight: 600;
}

.disclaimer-section {
    padding: 40px 20px;
    background-color: #fff9e6;
    border-top: 3px solid #f39c12;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
}

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

.footer-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-left {
    flex: 1;
}

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

.footer-right {
    flex: 1;
}

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
}

.about-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.about-left {
    flex: 1;
    background-color: #bdc3c7;
}

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

.about-right {
    flex: 1;
}

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

.about-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

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

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

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

.value-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

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

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

.approach-content {
    flex: 1;
}

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

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

.approach-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.services-detailed {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

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

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

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

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

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

.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 30px;
}

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

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #bdc3c7;
}

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

.thanks-section {
    padding: 120px 20px;
    background-color: #ecf0f1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.btn-return {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

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

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

.legal-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .testimonials-split,
    .footer-split,
    .about-split,
    .values-grid,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

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

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

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

    .services-preview h2,
    .values-section h2 {
        font-size: 32px;
    }
}