* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --hover-color: #1d4ed8;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-right img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.cta-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-tertiary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    background: var(--bg-light);
}

.intro-left {
    flex: 1;
    min-width: 300px;
}

.intro-right {
    flex: 1;
    min-width: 300px;
}

.intro-right img {
    border-radius: 12px;
}

.value-cards {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.value-cards h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.services-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    background: var(--bg-light);
}

.services-left {
    flex: 0 0 35%;
    min-width: 280px;
}

.services-right {
    flex: 1;
    min-width: 300px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.service-item h3 {
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.btn-select {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-select:hover {
    background: var(--hover-color);
}

.cta-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.cta-left {
    flex: 1;
}

.cta-right {
    flex: 0 0 auto;
}

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
    background: var(--bg-light);
}

.testimonial-left, .testimonial-right {
    flex: 1;
    min-width: 280px;
}

blockquote {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

blockquote p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9rem;
}

.approach-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.approach-left {
    flex: 1;
    min-width: 300px;
}

.approach-right {
    flex: 1;
    min-width: 300px;
}

.approach-right img {
    border-radius: 12px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.step h4 {
    margin-bottom: 0.5rem;
}

.stats-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    background: var(--bg-light);
}

.stats-left {
    flex: 0 0 30%;
}

.stats-right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 150px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

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

.form-intro {
    margin-bottom: 2rem;
}

.consultation-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--hover-color);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--bg-light);
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
}

.page-hero-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    gap: 4rem;
}

.story-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    background: var(--bg-light);
}

.story-left {
    flex: 1;
    min-width: 300px;
}

.story-right {
    flex: 1;
    min-width: 300px;
}

.story-right img {
    border-radius: 12px;
}

.philosophy-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.philosophy-left {
    flex: 1;
    min-width: 300px;
}

.philosophy-right {
    flex: 1;
    min-width: 300px;
}

.philosophy-right img {
    border-radius: 12px;
}

.expertise-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.expertise-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.values-left {
    flex: 0 0 30%;
}

.values-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.team-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    background: var(--bg-light);
}

.team-left {
    flex: 1;
    min-width: 300px;
}

.team-right {
    flex: 1;
    min-width: 300px;
}

.team-right img {
    border-radius: 12px;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-content h2 {
    color: white;
}

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

.cta-content .cta-primary:hover {
    background: var(--bg-light);
}

.service-detail-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.service-detail-split:nth-child(even) {
    background: var(--bg-light);
}

.service-detail-left {
    flex: 1;
    min-width: 300px;
}

.service-detail-right {
    flex: 1;
    min-width: 300px;
}

.service-detail-right img {
    border-radius: 12px;
}

.price-large {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.deliverables {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.deliverables ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.deliverables li {
    margin-bottom: 0.5rem;
}

.timeline {
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.process-left {
    flex: 0 0 30%;
}

.process-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.pricing-note-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-image {
    flex: 1;
    min-width: 300px;
}

.contact-image img {
    border-radius: 12px;
}

.contact-detail {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.faq-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-split {
    display: flex;
    gap: 3rem;
}

.faq-left, .faq-right {
    flex: 1;
    min-width: 280px;
}

.faq-item {
    margin-bottom: 2rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h4 {
    margin-bottom: 0.5rem;
}

.thanks-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    min-height: 60vh;
    align-items: center;
}

.thanks-content {
    flex: 1;
    min-width: 300px;
}

.thanks-image {
    flex: 1;
    min-width: 300px;
}

.thanks-image img {
    border-radius: 12px;
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service {
    margin: 0;
    font-size: 1.125rem;
}

.next-steps {
    margin: 2rem 0;
}

.next-steps ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-container h1 {
    margin-bottom: 0.5rem;
}

.updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-split,
    .intro-split,
    .services-split,
    .cta-split,
    .testimonial-split,
    .approach-split,
    .stats-split,
    .page-hero-split,
    .story-split,
    .philosophy-split,
    .values-split,
    .team-split,
    .service-detail-split,
    .process-split,
    .contact-split,
    .faq-split,
    .thanks-section {
        flex-direction: column;
    }

    .services-left,
    .stats-left,
    .values-left,
    .process-left {
        flex: 1;
    }

    .nav-menu {
        gap: 1rem;
    }

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

    .card {
        flex: 1 1 100%;
    }

    .expertise-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
