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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

ul {
    list-style-position: inside;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e40af;
}

.logo:hover {
    color: #2563eb;
}

.ad-label {
    font-size: 0.75rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-right a:hover,
.nav-right a.active {
    color: #2563eb;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

.hero-left h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.hero-right {
    flex: 1;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: #2563eb;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

/* Value Proposition Section */
.value-proposition {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.vp-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.vp-image {
    flex: 1;
    background-color: #e5e7eb;
}

.vp-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.vp-content {
    flex: 1;
}

.vp-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
    line-height: 1.3;
}

.vp-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Challenges Section */
.challenges-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.challenges-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.challenges-header h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1rem;
}

.challenges-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.challenge-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: #111827;
}

.challenge-card p {
    color: #6b7280;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Solution Split Section */
.solution-split {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.solution-content {
    flex: 1;
    order: 2;
}

.solution-visual {
    flex: 1;
    order: 1;
}

.solution-content h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.solution-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

.benefits-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #374151;
    font-size: 1.02rem;
}

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

.solution-note {
    background-color: #f0f9ff;
    padding: 1.2rem;
    border-left: 4px solid #2563eb;
    margin-top: 1.5rem;
    font-size: 0.98rem;
    color: #1e40af;
}

.solution-visual img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.visual-caption {
    margin-top: 1rem;
}

.visual-caption p {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-block {
    max-width: 1400px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
}

.service-block.alternate {
    flex-direction: row-reverse;
}

.service-info {
    flex: 2;
    padding: 3rem;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.2rem;
    color: #111827;
}

.service-info p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #374151;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.service-price {
    flex: 1;
    background-color: #f9fafb;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid #e5e7eb;
}

.service-block.alternate .service-price {
    border-left: none;
    border-right: 1px solid #e5e7eb;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: block;
}

.price-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2563eb;
    display: block;
    margin-bottom: 2rem;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1e40af;
    color: #ffffff;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #111827;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Technical Insight */
.technical-insight {
    padding: 4rem 2rem;
    background-color: #f0f9ff;
}

.insight-content {
    max-width: 1000px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.insight-content p {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.reference {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.reference:hover {
    text-decoration: underline;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    background-color: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
}

.form-left {
    flex: 1;
    padding: 3rem;
    background-color: #1e40af;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
}

.form-left p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #e0e7ff;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #10b981;
}

.form-right {
    flex: 1.2;
    padding: 3rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-submit {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #1e40af;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef3c7;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #92400e;
}

.disclaimer-content p {
    font-size: 0.92rem;
    color: #78350f;
    line-height: 1.7;
}

/* References Section */
.references-section {
    padding: 3rem 2rem;
    background-color: #f9fafb;
}

.references-content {
    max-width: 1200px;
    margin: 0 auto;
}

.references-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.8rem;
}

.references-list a {
    color: #2563eb;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #d1d5db;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Page Header */
.page-header {
    background-color: #1e40af;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.header-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    color: #e0e7ff;
}

/* About Page Styles */
.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #e5e7eb;
}

.story-image img {
    width: 100%;
    min-height: 450px;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.story-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.02rem;
}

/* Expertise Split */
.expertise-split {
    padding: 5rem 2rem;
    background-color: #ffffff;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.expertise-left {
    flex: 1;
}

.expertise-right {
    flex: 1;
    background-color: #e5e7eb;
}

.expertise-left h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.expertise-left p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.expertise-list {
    list-style: none;
    margin: 1.5rem 0;
}

.expertise-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #374151;
    font-size: 1.02rem;
}

.expertise-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.expertise-note {
    background-color: #f0f9ff;
    padding: 1.2rem;
    border-left: 4px solid #2563eb;
    margin-top: 1.5rem;
    font-size: 0.98rem;
    color: #1e40af;
}

.expertise-right img {
    width: 100%;
    min-height: 450px;
    object-fit: cover;
}

/* Certifications */
.certifications-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

.cert-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

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

.cert-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cert-item h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.cert-item p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Approach */
.team-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #111827;
}

.timeline-content p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.02rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background-color: #2563eb;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e0e7ff;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #2563eb;
}

/* Services Detail Page */
.services-detail {
    padding: 3rem 2rem;
    background-color: #f9fafb;
}

.service-detail-block {
    max-width: 1400px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-detail-block.alternate .detail-content-split {
    flex-direction: row-reverse;
}

.detail-header {
    padding: 2rem 3rem;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-header h2 {
    font-size: 1.9rem;
    color: #111827;
    flex: 1;
    min-width: 300px;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
}

.detail-content-split {
    display: flex;
}

.detail-left,
.detail-right {
    flex: 1;
    padding: 3rem;
}

.detail-left {
    background-color: #e5e7eb;
}

.detail-left img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.detail-right h3,
.detail-left h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.detail-right h4,
.detail-left h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

.detail-right p,
.detail-left p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.detail-right ul,
.detail-left ul {
    list-style: none;
    margin: 1rem 0;
}

.detail-right ul li,
.detail-left ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.detail-right ul li:before,
.detail-left ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.detail-note {
    background-color: #f0f9ff;
    padding: 1.2rem;
    border-left: 4px solid #2563eb;
    margin-top: 1.5rem;
    font-size: 0.98rem;
    color: #1e40af;
}

.detail-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.detail-cta:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.service-package {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.service-package h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #111827;
}

/* Additional Services */
.additional-services {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.additional-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.additional-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.additional-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

.additional-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.price-hint {
    display: block;
    color: #6b7280;
    font-size: 0.95rem;
    font-style: italic;
}

.consultation-cta {
    padding: 5rem 2rem;
    background-color: #f9fafb;
    text-align: center;
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

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

.info-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
    background-color: #e5e7eb;
}

.contact-map img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.map-caption {
    padding: 1rem;
    background-color: #f9fafb;
    font-size: 0.9rem;
    color: #6b7280;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.faq-item p {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.form-intro p {
    font-size: 1.05rem;
    color: #6b7280;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group span {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
    min-height: 70vh;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    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: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.thanks-message {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.service-info {
    background-color: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    color: #1e40af;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #111827;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: #111827;
}

.step p {
    font-size: 0.98rem;
    color: #6b7280;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2563eb;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.additional-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.additional-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.additional-info ul {
    list-style: none;
}

.additional-info ul li {
    padding: 0.5rem 0;
    font-size: 1.02rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.last-updated {
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-container h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

.legal-container h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #374151;
}

.legal-container h5 {
    font-size: 1.05rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-weight: 600;
}

.legal-container p {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-container li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #4b5563;
}

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

.legal-container a:hover {
    color: #1e40af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .vp-container,
    .solution-split,
    .story-container,
    .expertise-split,
    .contact-layout,
    .form-container-split {
        flex-direction: column;
    }

    .service-block,
    .service-block.alternate {
        flex-direction: column;
    }

    .service-price,
    .service-block.alternate .service-price {
        border: none;
        border-top: 1px solid #e5e7eb;
    }

    .detail-content-split,
    .service-detail-block.alternate .detail-content-split {
        flex-direction: column;
    }

    .solution-content {
        order: 1;
    }

    .solution-visual {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-right {
        width: 100%;
        justify-content: space-between;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .challenges-grid,
    .values-grid,
    .testimonials-container,
    .additional-grid {
        flex-direction: column;
    }

    .challenge-card,
    .value-card,
    .testimonial,
    .additional-card {
        flex: 1 1 100%;
    }

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

    .steps-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .step {
        max-width: 100%;
    }

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

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

@media (max-width: 480px) {
    .hero-left,
    .form-left,
    .form-right,
    .service-info,
    .service-price,
    .detail-left,
    .detail-right {
        padding: 2rem 1.5rem;
    }

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

    .services-showcase h2,
    .values-section h2,
    .testimonials-section h2 {
        font-size: 1.85rem;
    }
}