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

.ad-disclosure {
    background-color: #fee2e2;
    color: #991b1b;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #fecaca;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

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

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

.hero-content p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

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

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

.intro-section,
.services-preview,
.technology-section {
    padding: 100px 0;
}

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

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

.split-image {
    flex: 1;
    position: relative;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.split-text p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.service-card {
    background-color: #f9fafb;
    padding: 28px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.service-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 16px;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 12px;
}

.link-cta {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    margin-top: 24px;
    font-size: 17px;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
}

.link-cta:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #4b5563;
}

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

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 16px;
}

.form-header p {
    font-size: 18px;
    color: #6b7280;
}

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.submit-button {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 0 24px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

.cookie-reject {
    background-color: #4b5563;
    color: #ffffff;
}

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

.page-header {
    background-color: #f9fafb;
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #111827;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #6b7280;
}

.about-intro,
.values-section,
.team-section,
.experience-section,
.contact-section,
.location-section,
.additional-info {
    padding: 80px 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.value-item {
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.value-item h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: #6b7280;
}

.team-section,
.location-section {
    background-color: #f9fafb;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-content h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

.section-content p {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.competencies-list {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.competency {
    flex: 1;
    text-align: center;
}

.competency h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 16px;
}

.competency p {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
}

.specialty-list {
    list-style: none;
    margin-top: 24px;
}

.specialty-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
}

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

.services-list {
    padding: 60px 0;
}

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

.service-features {
    margin-top: 32px;
}

.service-features h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 16px;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #4b5563;
}

.service-features ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 24px;
}

.pricing-box {
    background-color: #eff6ff;
    border: 2px solid #2563eb;
    border-radius: 10px;
    padding: 24px;
    margin-top: 32px;
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

.price-note {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.cta-section {
    background-color: #2563eb;
    padding: 80px 24px;
    text-align: center;
}

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

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

.cta-content .cta-button {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-content .cta-button:hover {
    background-color: #f3f4f6;
}

.contact-info {
    margin-top: 32px;
}

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

.info-block h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.process-steps {
    margin-top: 32px;
}

.step {
    margin-bottom: 28px;
}

.step h3 {
    font-size: 19px;
    color: #111827;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 24px;
    background-color: #f9fafb;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.thanks-container h1 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-info {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 17px;
    color: #1e40af;
    margin: 0;
}

.next-steps {
    margin: 48px 0;
}

.next-steps h2 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 32px;
}

.steps-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.step-card {
    flex: 1;
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 10px;
    text-align: left;
}

.step-card h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

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

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

.btn-secondary {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
}

.legal-page {
    padding: 60px 0 100px;
}

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

.legal-container h1 {
    font-size: 40px;
    color: #111827;
    margin-bottom: 16px;
}

.update-date {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 20px;
    color: #1f2937;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid #2563eb;
}

.legal-section a:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-content {
        max-width: 100%;
        padding: 48px 24px;
    }

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .competencies-list {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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