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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    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: 1px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    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;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-right: 16px;
}

.hero-split {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

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

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

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

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.split-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.split-text li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.split-form {
    flex: 1;
}

.services-intro {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-grid {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
}

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

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

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

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

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.service-card.selected {
    border: 3px solid #27ae60;
}

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

.form-benefits {
    margin-top: 28px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

form {
    background-color: #f8f9fa;
    padding: 36px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    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: #27ae60;
}

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

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

.trust-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.header-content h1 {
    font-size: 44px;
    margin-bottom: 12px;
}

.header-content p {
    font-size: 18px;
    color: #ecf0f1;
}

.services-detailed {
    padding: 60px 40px;
}

.services-detailed .split-container {
    margin-bottom: 80px;
}

.service-features {
    margin: 24px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.services-cta {
    padding: 80px 40px;
    background-color: #2c3e50;
    text-align: center;
}

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

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

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

.about-intro,
.methodology-section,
.values-section,
.team-approach {
    padding: 80px 40px;
}

.about-intro {
    background-color: #ffffff;
}

.methodology-section {
    background-color: #f8f9fa;
}

.values-section {
    background-color: #ffffff;
}

.team-approach {
    background-color: #f8f9fa;
}

.credentials-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.credentials-content {
    max-width: 1400px;
    margin: 0 auto;
}

.credentials-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.credential-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

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

.credential-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.commitment-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.contact-details {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-info-blocks {
    margin: 32px 0;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #27ae60;
    font-weight: 600;
}

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

.contact-process {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.process-content {
    max-width: 1400px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(25% - 24px);
    min-width: 240px;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

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

.preparation-list {
    margin: 20px 0;
    padding-left: 20px;
}

.preparation-list li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a5568;
}

.location-map {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.map-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.map-content p {
    font-size: 17px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

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

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 28px;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 28px 0;
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ul {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
}

.content-wrapper h3 {
    font-size: 22px;
    margin: 28px 0 12px 0;
    color: #2c3e50;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.content-wrapper ul {
    margin: 16px 0;
    padding-left: 28px;
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

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

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

.footer-section {
    flex: 1;
    min-width: 240px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #27ae60;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: #2a2a2a;
    border-radius: 6px;
}

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

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

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

@media (max-width: 1024px) {
    .hero-content,
    .split-container {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .process-step {
        flex: 1 1 calc(50% - 16px);
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 8px;
    }

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

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

    .services-container {
        gap: 24px;
    }

    .split-text h2,
    .section-header h2 {
        font-size: 28px;
    }

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

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

    .process-step {
        flex: 1 1 100%;
    }
}