/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Header */
.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-medium);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
}

.main-nav a:hover {
    color: var(--secondary-color);
}

/* Split Layout System */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 60px 0;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.cta-text {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.cta-primary {
    background-color: var(--secondary-color);
    color: white;
}

.cta-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.cta-text {
    padding: 0;
    background: none;
    color: var(--secondary-color);
    font-size: 18px;
}

.cta-text:hover {
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.info-section,
.approach-section,
.technology-section,
.implementation-section,
.expertise-section,
.quality-section {
    background-color: var(--bg-white);
}

.services-intro,
.final-cta-section {
    background-color: var(--bg-light);
}

/* Service Highlight */
.service-highlight {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.price-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 16px;
}

/* Lists */
.benefit-list,
.industry-list {
    list-style: none;
    margin: 24px 0;
}

.benefit-list li,
.industry-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 18px;
    color: var(--text-medium);
}

.benefit-list li::before,
.industry-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

/* Stats */
.stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 14px;
    color: var(--text-medium);
}

/* Testimonials */
.testimonial-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

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

.testimonial-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-item blockquote {
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-item cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 14px;
}

/* Form Section */
.form-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-medium);
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Services Page */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-hero h1 {
    color: white;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

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

.services-detailed.alternate {
    background-color: var(--bg-light);
}

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

.service-intro {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.service-content {
    margin: 24px 0;
}

.service-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-content ul {
    list-style: none;
    margin: 16px 0;
}

.service-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-medium);
}

.service-content ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
}

.service-pricing .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

/* About Page */
.team-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 8px;
}

.team-member .role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 16px;
}

.stats-grid {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-card span {
    font-size: 14px;
    color: var(--text-medium);
}

.approach-steps {
    list-style: none;
    counter-reset: step-counter;
}

.approach-steps li {
    counter-increment: step-counter;
    margin-bottom: 32px;
    padding-left: 60px;
    position: relative;
}

.approach-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.approach-steps h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.approach-steps p {
    font-size: 16px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Contact Page */
.contact-info-block {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-detail .note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.map-section {
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--bg-light);
    background-image: linear-gradient(45deg, #e5e7eb 25%, transparent 25%, transparent 75%, #e5e7eb 75%, #e5e7eb),
                      linear-gradient(45deg, #e5e7eb 25%, transparent 25%, transparent 75%, #e5e7eb 75%, #e5e7eb);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background-color: var(--bg-white);
    padding: 24px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--text-dark);
}

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

.faq-item {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    margin: 48px 0;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 32px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 24px;
    padding-left: 60px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.steps-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.additional-info {
    text-align: left;
    margin-top: 48px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.additional-info h3 {
    margin-bottom: 16px;
}

/* CTA Box */
.cta-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-box h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cta-box p {
    margin-bottom: 24px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 24px;
}

.legal-page li {
    margin-bottom: 8px;
    color: var(--text-medium);
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-nav {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: white;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: white;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 16px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

    section h2 {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

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

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
    }

    section h2 {
        font-size: 24px;
    }

    section p {
        font-size: 16px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

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