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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.cookie-banner.active {
    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: 250px;
}

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

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

.btn-accept {
    background-color: #3182ce;
    color: #ffffff;
}

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3182ce;
}

.ad-disclosure {
    font-size: 12px;
    color: #718096;
    padding: 5px 12px;
    background-color: #f7fafc;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

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

.cta-primary {
    background-color: #3182ce;
    color: #ffffff;
}

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

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

.cta-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
}

.value-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

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

.content-block {
    flex: 1;
    min-width: 300px;
}

.content-block h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 20px;
}

.content-block p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.image-block {
    flex: 1;
    min-width: 300px;
}

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

.services-overview {
    padding: 80px 0;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin: 20px 20px 12px;
}

.service-card p {
    font-size: 15px;
    color: #4a5568;
    margin: 0 20px 20px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #3182ce;
    margin: 0 20px 20px;
}

.form-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 16px;
}

.form-section > p {
    text-align: center;
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #3182ce;
    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: #2c5aa0;
}

.why-choose {
    padding: 80px 0;
}

.testimonials {
    padding: 80px 0;
    background-color: #f7fafc;
}

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #3182ce;
}

.testimonial-card p {
    font-size: 16px;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
    font-style: normal;
}

.final-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #1a202c;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.main-footer {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #a0aec0;
    max-width: 800px;
    margin: 16px auto 0;
}

.page-hero {
    background-color: #f7fafc;
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.methodology {
    padding: 80px 0;
    background-color: #f7fafc;
}

.methodology h2 {
    font-size: 36px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

.method-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.method-step h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 12px;
}

.method-step p {
    font-size: 16px;
    color: #4a5568;
}

.team-values {
    padding: 80px 0;
}

.team-values h2 {
    font-size: 36px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    width: calc(50% - 15px);
    min-width: 280px;
}

.value-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
}

.expertise-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 80px 0;
}

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

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 16px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: #1a202c;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.service-detail-content li {
    margin-bottom: 8px;
    color: #4a5568;
}

.service-duration {
    font-weight: 600;
    color: #718096;
    margin-top: 16px;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.service-info {
    padding: 80px 0;
    background-color: #f7fafc;
}

.service-info h2 {
    font-size: 36px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

.info-block {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.info-block h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 12px;
}

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

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 8px;
}

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

.contact-item .note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.response-info {
    padding: 80px 0;
    background-color: #f7fafc;
}

.response-info h2 {
    font-size: 36px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

.response-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.response-step h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 12px;
}

.response-step p {
    font-size: 16px;
    color: #4a5568;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 16px;
}

.thanks-content > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 32px;
    text-align: center;
}

.thanks-step {
    margin-bottom: 32px;
}

.thanks-step h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 8px;
}

.thanks-step p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-note {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-note p {
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 8px;
}

.thanks-note strong {
    color: #1a202c;
}

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

.additional-info {
    padding: 80px 0;
    background-color: #f7fafc;
}

.additional-info h2 {
    font-size: 36px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: calc(33.333% - 20px);
    min-width: 280px;
}

.info-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.info-card a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #2c5aa0;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 8px;
}

.updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

.legal-content li {
    margin-bottom: 8px;
    color: #4a5568;
}

.legal-content a {
    color: #3182ce;
    text-decoration: none;
}

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

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

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

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #1a202c;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

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

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

    .services-overview h2,
    .final-cta h2 {
        font-size: 32px;
    }

    .service-card,
    .value-card,
    .info-card {
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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

    .footer-grid {
        flex-direction: column;
    }
}