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

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

.main-header {
    background: #1a1a2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.ad-notice {
    font-size: 0.75rem;
    color: #e0e0e0;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

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

.main-nav a:hover {
    color: #4a90e2;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    background: #4a90e2;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #357abd;
}

.cta-inline {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #4a90e2;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: #357abd;
}

.cta-large {
    display: inline-block;
    background: #4a90e2;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s;
}

.cta-large:hover {
    background: #357abd;
    transform: scale(1.03);
}

section {
    padding: 80px 0;
}

.intro-section {
    background: #f8f9fa;
}

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

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.content-block h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.content-block ul li {
    margin-bottom: 10px;
    color: #4a5568;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.technology-overview {
    background: #ffffff;
}

.services-preview {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #4a90e2;
    margin: 20px 0;
}

.select-service {
    width: 100%;
    padding: 12px 20px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #357abd;
}

.why-us {
    background: #ffffff;
}

.benefits-list {
    list-style: none;
    margin-left: 0;
}

.benefits-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonials-section {
    background: #1a1a2e;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.testimonials-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial .author {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
}

.coverage-info {
    background: #f8f9fa;
}

.business-section {
    background: #ffffff;
}

.check-list {
    list-style: none;
    margin-left: 0;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.check-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.contact-form-section {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px 20px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #357abd;
}

.final-cta {
    background: #f8f9fa;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.cta-box p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
}

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

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #4a90e2;
}

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

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #b0b0b0;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    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: 25px;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #357abd;
}

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

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

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.service-detail {
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse {
    background: #f8f9fa;
    padding: 60px 0;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.price-box {
    margin: 25px 0;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    font-size: 0.9rem;
    color: #4a5568;
    margin-right: 10px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #4a90e2;
}

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

.about-intro,
.mission-section,
.expertise-section,
.methodology-section {
    padding: 80px 0;
}

.mission-section {
    background: #f8f9fa;
}

.expertise-section {
    background: #ffffff;
}

.methodology-section {
    background: #f8f9fa;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.stats-section {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    padding: 80px 0;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.5;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #4caf50;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.selected-service-info {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

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

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

.additional-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.additional-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.additional-info p {
    margin-bottom: 10px;
    color: #4a5568;
}

.contact-email {
    font-weight: 600;
    color: #4a90e2;
}

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

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.legal-intro {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #357abd;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .header-flex {
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 50px 30px;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .testimonials-flex {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

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

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}