* {
    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: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

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

.nav-right a:hover {
    color: #27ae60;
}

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

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

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

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

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.intro-offset {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    gap: 60px;
    padding: 0 50px;
}

.intro-narrow {
    flex: 0.8;
}

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

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.intro-wide {
    flex: 1.2;
}

.intro-wide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
}

.intro-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.services-grid {
    padding: 100px 50px;
    background-color: #ffffff;
}

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

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

.section-header-center p {
    font-size: 18px;
    color: #555;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e0e0e0;
}

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

.service-card p {
    padding: 0 25px 20px;
    font-size: 16px;
    color: #555;
    flex: 1;
}

.service-card .price {
    padding: 0 25px 15px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-card .select-service {
    margin: 0 25px 25px;
    padding: 12px 25px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #229954;
}

.form-section {
    padding: 100px 50px;
    background-color: #f8f9fa;
}

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

.form-info {
    flex: 0.8;
}

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

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

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

.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;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

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

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

.trust-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    gap: 60px;
    padding: 0 50px;
}

.trust-content {
    flex: 1;
}

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

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

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #27ae60;
}

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

.page-hero {
    padding: 100px 50px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

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

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

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 50px;
}

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

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

.value-item {
    flex: 0 1 calc(50% - 20px);
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

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

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

.approach-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    gap: 60px;
    padding: 0 50px;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.approach-text {
    flex: 1;
}

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

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

.cta-bottom {
    text-align: center;
    padding: 80px 50px;
    background-color: #f8f9fa;
}

.cta-bottom h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.services-detail {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 50px;
}

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

.service-detail-image {
    flex: 0.8;
}

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

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

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

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

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

.cta-service {
    display: inline-block;
    padding: 14px 35px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

.contact-info-box {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

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

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #e8f5e9;
    border-radius: 6px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
}

.contact-image-side {
    flex: 1;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.map-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 50px;
    text-align: center;
}

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

.map-section p {
    font-size: 17px;
    color: #555;
}

.thanks-section {
    display: flex;
    min-height: 600px;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 50px;
}

.thanks-content {
    flex: 1.2;
}

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

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

.thanks-details {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-next p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #27ae60;
    text-decoration: none;
    border: 2px solid #27ae60;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.thanks-image {
    flex: 0.8;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

.legal-update {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

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

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

.legal-content a {
    color: #27ae60;
    text-decoration: none;
}

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

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

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

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

.cookie-table td {
    font-size: 16px;
    color: #555;
}

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

    .nav-left {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-right {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-split,
    .intro-offset,
    .about-split,
    .trust-section,
    .approach-section,
    .contact-layout,
    .thanks-section,
    .form-container,
    .service-detail-card {
        flex-direction: column;
    }

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

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

    .value-item {
        flex: 0 1 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        text-align: center;
    }
}