* {
    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: #f8f9fa;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    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;
    min-height: 70px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #4a5fc1;
}

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

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

.nav-links a:hover {
    color: #4a5fc1;
}

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

.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: #ffffff;
    padding: 60px 20px;
}

.hero-section .container {
    width: 100%;
    max-width: 1200px;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

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

.cta-button {
    display: inline-block;
    background-color: #4a5fc1;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #3d4fa3;
    transform: translateY(-2px);
}

.cta-button-alt {
    display: inline-block;
    background-color: transparent;
    color: #4a5fc1;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #4a5fc1;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-alt:hover {
    background-color: #4a5fc1;
    color: #ffffff;
}

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

.intro-card {
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-card p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

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

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 380px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

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

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

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 700;
}

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #4a5fc1;
    margin-bottom: 20px;
}

.select-service {
    background-color: #4a5fc1;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a2e;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d1d9e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a5fc1;
}

.service-display {
    background-color: #e8eef5;
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: 10px;
}

.submit-button {
    background-color: #4a5fc1;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #3d4fa3;
}

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

.benefits-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.benefit-card {
    background-color: #f1f4f9;
    padding: 35px 30px;
    border-radius: 10px;
    flex: 1 1 calc(50% - 15px);
    max-width: 550px;
    min-width: 280px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 20px;
    background-color: #4a5fc1;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.cta-section .cta-button {
    background-color: #ffffff;
    color: #4a5fc1;
}

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

.cta-section .cta-button-alt {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-section .cta-button-alt:hover {
    background-color: #ffffff;
    color: #4a5fc1;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

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

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

.footer-col a {
    display: block;
    color: #b8c1d0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    font-size: 14px;
}

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #2c3e50;
}

.cookie-content a {
    color: #4a5fc1;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #4a5fc1;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #3d4fa3;
}

.cookie-btn.reject {
    background-color: #e8eef5;
    color: #2c3e50;
}

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

.page-header {
    background-color: #4a5fc1;
    color: #ffffff;
    padding: 80px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: #e8eef5;
}

.about-intro {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: #e8eef5;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.value-card {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 10px;
    flex: 1 1 calc(50% - 15px);
    max-width: 550px;
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4a5fc1;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.process-section {
    padding: 90px 20px;
    background-color: #f1f4f9;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.step-card {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 350px;
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

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

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
}

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

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

.service-detail-card {
    background-color: #ffffff;
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: stretch;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #5a6c7d;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a5fc1;
    font-weight: 700;
    font-size: 18px;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #4a5fc1;
    margin-bottom: 25px;
}

.select-service-btn {
    background-color: #4a5fc1;
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #3d4fa3;
}

.service-detail-image {
    flex: 1;
    background-color: #e8eef5;
    min-height: 400px;
}

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

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

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

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4a5fc1;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #e8eef5;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.map-section {
    padding: 90px 20px;
    background-color: #f1f4f9;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
    text-align: center;
    font-weight: 700;
}

.map-section > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 16px;
}

.map-placeholder {
    background-color: #e8eef5;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.map-content p {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #ffffff;
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-text {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.8;
}

.service-confirmation {
    background-color: #e8eef5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.service-ref {
    font-size: 16px;
    color: #2c3e50;
}

.thanks-info {
    background-color: #f1f4f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    color: #5a6c7d;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a5fc1;
    font-weight: 700;
    font-size: 20px;
}

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

.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: #1a1a2e;
    font-weight: 700;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4a5fc1;
    font-weight: 700;
}

.legal-text p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-text li {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .nav-links {
        gap: 15px;
    }

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

    .service-card {
        max-width: 100%;
    }

    .about-layout,
    .approach-layout,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .form-wrapper {
        padding: 40px 30px;
    }
}