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

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: #3498db;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #2980b9;
}

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

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

.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.brand-section .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-primary a {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.hero-asymmetric {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-text-block {
    max-width: 700px;
    margin-left: 60px;
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 32px;
}

.hero-visual-element {
    margin-left: auto;
    max-width: 90%;
    background-color: #e0e0e0;
}

.hero-visual-element img {
    width: 100%;
    height: auto;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    opacity: 1;
}

.intro-offset {
    padding: 100px 0 80px;
}

.content-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
}

.text-column-narrow {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    margin-left: 40px;
}

.text-column-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-column-narrow p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 16px;
}

.feature-cards-stacked {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #fafafa;
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.feature-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 24px 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    color: #546e7a;
    margin: 0 24px 24px;
    line-height: 1.6;
}

.services-overview {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 20px;
}

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

.section-header-offset p {
    font-size: 18px;
    color: #546e7a;
}

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

.service-box {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-box.service-large {
    flex: 1 1 calc(66.666% - 30px);
}

.service-box.service-wide {
    flex: 1 1 calc(50% - 30px);
}

.service-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.btn-service {
    padding: 12px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #1a252f;
}

.form-section-diagonal {
    padding: 100px 0;
    background-color: #ecf0f1;
}

.form-wrapper-offset {
    max-width: 800px;
    margin-left: auto;
    margin-right: 60px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #546e7a;
}

.main-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.btn-submit {
    padding: 14px 32px;
    background-color: #3498db;
    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: #2980b9;
}

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.trust-section > .container-narrow > p {
    font-size: 18px;
    color: #546e7a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.7;
}

.tech-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
}

.benefit-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
    background-color: #e0e0e0;
}

.benefit-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.cta-asymmetric {
    padding: 100px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-block-offset {
    max-width: 700px;
    margin-left: 100px;
    padding: 0 20px;
}

.cta-block-offset h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-block-offset p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.footer-main {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    font-size: 14px;
    color: #bdc3c7;
}

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

.footer-disclaimer {
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 24px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-hero-simple {
    padding: 80px 0 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.subtitle {
    font-size: 20px;
    color: #546e7a;
}

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

.story-content {
    max-width: 700px;
    margin-bottom: 60px;
}

.story-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-content p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-image {
    max-width: 100%;
    background-color: #e0e0e0;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

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

.team-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.team-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.team-description {
    flex: 1;
    min-width: 320px;
}

.team-description p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-visual {
    flex: 1;
    min-width: 320px;
    background-color: #e0e0e0;
}

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

.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.process-step h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.process-step p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #3498db;
    text-align: center;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 16px;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
    opacity: 1;
}

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

.service-detail-block {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #ecf0f1;
}

.service-detail-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

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

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

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 24px 0;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    background-color: #e0e0e0;
}

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

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

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

.contact-details {
    flex: 1;
    min-width: 320px;
}

.contact-details h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

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

.contact-note p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    min-width: 320px;
    background-color: #e0e0e0;
}

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

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

.contact-cta h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #3498db;
    margin-bottom: 32px;
    font-weight: 600;
}

.thanks-details {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-details p {
    margin-bottom: 16px;
}

#selected-service-info {
    font-weight: 600;
    color: #2c3e50;
}

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

.thanks-visual {
    max-width: 600px;
    margin: 0 auto;
    background-color: #e0e0e0;
}

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

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

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

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

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-page ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
}

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

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-primary {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .hero-text-block {
        margin-left: 0;
    }

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

    .hero-visual-element {
        max-width: 100%;
    }

    .text-column-narrow {
        margin-left: 0;
    }

    .content-irregular {
        gap: 40px;
    }

    .cta-block-offset {
        margin-left: 0;
    }

    .form-wrapper-offset {
        margin-right: 0;
    }

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

    .service-box.service-large,
    .service-box.service-wide {
        flex: 1 1 100%;
    }

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

    .cookie-content p {
        min-width: 100%;
    }
}