* {
    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 15px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #2563eb;
}

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

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
    margin-top: 15px;
}

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

.problem-split {
    display: flex;
    min-height: 550px;
}

.problem-image {
    flex: 1;
    background-color: #f1f5f9;
    overflow: hidden;
}

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

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

.problem-content h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

.problem-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 25px;
}

.problem-list {
    list-style: none;
    margin-top: 20px;
}

.problem-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    color: #475569;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.insight-section {
    background-color: #ffffff;
    padding: 90px 20px;
}

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

.insight-container h2 {
    font-size: 38px;
    text-align: center;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.insight-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

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

.services-content {
    flex: 1;
    padding: 70px 60px;
}

.services-content h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-content > p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 6px;
    border-left: 4px solid #2563eb;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-price {
    font-size: 22px;
    color: #2563eb;
    font-weight: 700;
}

.service-item p {
    font-size: 15px;
    color: #475569;
}

.services-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.cta-inline {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #1d4ed8;
}

.trust-section {
    background-color: #ffffff;
    padding: 90px 20px;
}

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

.trust-container h2 {
    font-size: 38px;
    text-align: center;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.step {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 32px;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.testimonials-split {
    display: flex;
    min-height: 500px;
}

.testimonial-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #1e293b;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.testimonial-block {
    margin-bottom: 35px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #94a3b8;
}

.testimonial-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.form-section {
    background-color: #f8f9fa;
    padding: 90px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    text-align: center;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #475569;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #1d4ed8;
}

.disclaimer-section {
    background-color: #f1f5f9;
    padding: 50px 20px;
}

.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 20px 30px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
}

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

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

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

.page-header {
    background-color: #1e293b;
    padding: 80px 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    min-width: 300px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-price {
    font-size: 28px;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.service-detail-content p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #1d4ed8;
}

.about-split {
    display: flex;
    min-height: 550px;
}

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

.about-content h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

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

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

.values-container h2 {
    font-size: 38px;
    text-align: center;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.team-split {
    display: flex;
    min-height: 550px;
}

.team-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.team-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.team-content h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-list {
    list-style: none;
    margin: 20px 0;
}

.team-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #475569;
}

.team-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 20px;
}

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

.approach-container {
    max-width: 900px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 700;
}

.approach-container p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-split {
    display: flex;
    min-height: 550px;
}

.contact-info {
    flex: 1;
    padding: 70px 60px;
    background-color: #f8f9fa;
}

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

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

.contact-block h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.contact-map {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.contact-cta-section {
    background-color: #2563eb;
    padding: 70px 20px;
    text-align: center;
}

.contact-cta-container h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta-container p {
    font-size: 18px;
    color: #e0e7ff;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
}

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

.selected-service {
    font-size: 16px;
    color: #1e293b;
}

.selected-service strong {
    color: #2563eb;
}

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

.thanks-next h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-steps {
    padding-left: 25px;
}

.thanks-steps li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 20px;
}

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

.legal-container h1 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    color: #1e293b;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 20px;
    color: #1e293b;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .hero-split,
    .problem-split,
    .services-split,
    .testimonials-split,
    .about-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .problem-content,
    .services-content,
    .testimonial-content,
    .about-content,
    .team-content,
    .contact-info {
        padding: 50px 30px;
    }

    .hero-content h1,
    .problem-content h2,
    .services-content h2,
    .testimonial-content h2,
    .about-content h2,
    .team-content h2,
    .contact-info h2 {
        font-size: 28px;
    }

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

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

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