* {
    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-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.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;
    align-items: center;
    background-color: #f8fafc;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    max-width: 700px;
}

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

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

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

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2563eb;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #2563eb;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.intro-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.intro-section p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}

.services-showcase {
    padding: 100px 40px;
    background-color: #f8fafc;
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1e293b;
}

.split-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

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

.split-content ul {
    list-style: none;
    margin: 24px 0;
}

.split-content ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 17px;
    color: #475569;
}

.split-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.split-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.service-card p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.select-service {
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-form {
    margin-top: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    background-color: #dbeafe;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #1e40af;
    font-weight: 600;
}

.tech-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.tech-list li {
    padding-left: 28px;
    margin-bottom: 16px;
    position: relative;
    font-size: 18px;
    color: #475569;
}

.tech-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.process-section {
    padding: 100px 40px;
    background-color: #f8fafc;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.process-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    text-align: center;
}

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.process-step p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 40px;
    background-color: #1e293b;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #94a3b8;
    font-style: italic;
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: #cbd5e1;
    font-size: 15px;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    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: #cbd5e1;
    border: 2px solid #475569;
}

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

.page-hero {
    padding: 100px 40px 60px;
    background-color: #f8fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.page-hero p {
    font-size: 20px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 60px 40px 100px;
}

.service-detail-item {
    margin-bottom: 100px;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 28px;
}

.about-intro {
    padding: 80px 40px;
}

.values-section {
    padding: 100px 40px;
    background-color: #f8fafc;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

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

.approach-section {
    padding: 100px 40px;
}

.experience-section {
    padding: 100px 40px;
    background-color: #f8fafc;
}

.experience-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
    color: #1e293b;
}

.experience-section > p {
    font-size: 18px;
    color: #475569;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.8;
}

.stats-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
}

.team-section {
    padding: 100px 40px;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: #1e293b;
}

.team-section > p {
    font-size: 18px;
    color: #475569;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 0 1 280px;
    text-align: center;
}

.member-image {
    width: 100%;
    aspect-ratio: 2/3;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e293b;
}

.team-member p {
    font-size: 15px;
    color: #64748b;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
}

.contact-icon {
    color: #2563eb;
    margin-bottom: 20px;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

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

.contact-email {
    font-weight: 600;
    color: #2563eb;
}

.email-note,
.hours-note {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 8px;
}

.contact-alternate {
    padding: 100px 40px;
    background-color: #f8fafc;
}

.faq-section {
    padding: 100px 40px;
}

.faq-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
    color: #1e293b;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.faq-item p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
}

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

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1e293b;
}

.thanks-section > p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 24px;
}

.thanks-details {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    font-size: 18px;
    color: #1e293b;
}

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

.next-steps {
    margin-top: 60px;
    text-align: left;
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1e293b;
}

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

.next-steps ul li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

.next-steps ul li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: #2563eb;
    font-size: 24px;
}

.legal-page {
    padding: 80px 40px 100px;
    background-color: #ffffff;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1e293b;
}

.last-updated {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #334155;
}

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

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

.legal-page ul li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

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

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 24px;
    }

    .nav-menu {
        gap: 24px;
        font-size: 14px;
    }

    .hero-content {
        padding: 60px 24px;
    }

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

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

    .cta-section h2,
    .process-section h2,
    .values-section h2,
    .experience-section h2,
    .team-section h2,
    .faq-section h2 {
        font-size: 32px;
    }

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