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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

/* Navigation */
.navigation {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #546e7a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1e88e5;
}

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

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

/* Split Sections */
.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-visual {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a237e;
    font-weight: 700;
}

.split-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #283593;
    font-weight: 600;
}

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

/* Split Content Only */
.split-content-only {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

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

.split-left h2,
.split-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a237e;
    font-weight: 700;
}

.split-left p,
.split-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.split-left h3,
.split-right h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #283593;
    font-weight: 600;
}

.principles-list {
    list-style: none;
}

.principles-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

.principles-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-weight: bold;
}

/* Stats Block */
.stats-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
    background-color: #f5f7fa;
    border-left: 4px solid #1e88e5;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #1a237e;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #546e7a;
}

/* Services Section */
.services-intro {
    padding: 80px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a237e;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #546e7a;
}

/* Service Cards Split */
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.service-card-split {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1.2;
    padding: 60px;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a237e;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #546e7a;
}

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

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-weight: bold;
}

.service-pricing {
    flex: 0.8;
    padding: 60px 40px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 8px;
}

.price-note {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 24px;
}

/* CTAs */
.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1e88e5;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #1e88e5;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid #1e88e5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #1e88e5;
    color: #ffffff;
}

.cta-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a237e;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-service:hover {
    background-color: #0d1642;
}

/* Form Section */
.form-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    background-color: #f5f7fa;
}

.form-intro {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a237e;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
}

.form-container {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 15px;
    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: #1e88e5;
}

.form-container button[type="submit"] {
    width: 100%;
    margin-top: 8px;
}

/* Trust Section */
.trust-section {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a237e;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
}

/* Footer */
.footer {
    background-color: #1a237e;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #b0bec5;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #b0bec5;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b0bec5;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a237e;
    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: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

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

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #1e88e5;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1565c0;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Page Headers */
.page-header-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
}

.header-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a237e;
    font-weight: 800;
}

.header-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
}

.header-visual {
    flex: 1;
    overflow: hidden;
}

.header-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-centered {
    text-align: center;
    padding: 80px 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.page-header-centered h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a237e;
    font-weight: 800;
}

.page-header-centered p {
    font-size: 18px;
    color: #546e7a;
}

/* Team and Expertise */
.team-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: #1a237e;
    font-weight: 700;
    text-align: center;
}

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

.expertise-card {
    flex: 1;
    padding: 40px;
    background-color: #f5f7fa;
    border-left: 4px solid #1e88e5;
}

.expertise-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a237e;
    font-weight: 700;
}

.expertise-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
}

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    text-align: center;
    background-color: #f5f7fa;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a237e;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
}

/* Services Detailed Page */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1.5;
    padding: 60px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a237e;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #283593;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.detailed-list {
    list-style: none;
    margin: 20px 0;
}

.detailed-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.detailed-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #1e88e5;
    font-weight: bold;
    font-size: 20px;
}

.detailed-list li strong {
    color: #2c3e50;
}

.service-timeline {
    margin-top: 32px;
    padding: 32px;
    background-color: #f5f7fa;
}

.service-timeline h3 {
    margin-top: 0;
}

.timeline-item {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.timeline-label {
    font-weight: 700;
    color: #1a237e;
    width: 120px;
}

.timeline-desc {
    color: #546e7a;
}

.service-detail-pricing {
    flex: 1;
    background-color: #f8f9fa;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pricing-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.price-large {
    font-size: 56px;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 8px;
}

.price-includes {
    font-size: 14px;
    color: #6c757d;
    margin: 16px 0 24px;
    line-height: 1.6;
}

.pricing-features {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.pricing-features h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1a237e;
    font-weight: 700;
}

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

.pricing-features li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #546e7a;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-weight: bold;
}

.pricing-features p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.service-note {
    margin-top: 24px;
    padding: 20px;
    background-color: #e3f2fd;
    border-left: 4px solid #1e88e5;
    font-size: 15px;
    color: #0d47a1;
    line-height: 1.7;
}

/* Additional Services */
.additional-services {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f5f7fa;
}

.additional-services h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a237e;
    font-weight: 700;
    text-align: center;
}

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

.additional-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a237e;
    font-weight: 700;
}

.additional-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 20px;
}

.additional-price {
    font-size: 20px;
    font-weight: 700;
    color: #1e88e5;
}

/* Contact Page */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a237e;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #283593;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #856404;
    font-weight: 700;
}

.disclaimer-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #856404;
    margin-bottom: 16px;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content {
    padding: 60px 40px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a237e;
    font-weight: 800;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 32px;
}

.service-confirmation {
    padding: 24px;
    background-color: #e3f2fd;
    border-radius: 8px;
    margin-bottom: 48px;
    font-size: 16px;
    color: #0d47a1;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a237e;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 32px;
    text-align: left;
}

.step-item {
    flex: 1;
    padding: 32px;
    background-color: #f5f7fa;
    border-radius: 8px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #1e88e5;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a237e;
    font-weight: 700;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a237e;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #283593;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: #3949ab;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: #3949ab;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 8px;
}

.legal-content a {
    color: #1e88e5;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
    font-style: italic;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-reverse,
    .split-content-only,
    .form-split,
    .page-header-split,
    .contact-split,
    .service-card-split,
    .service-detail-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content,
    .split-content,
    .form-intro,
    .form-container,
    .header-content,
    .contact-info,
    .service-info,
    .service-pricing,
    .service-detail-content,
    .service-detail-pricing {
        padding: 40px 30px;
    }

    .expertise-grid,
    .additional-grid,
    .steps-grid,
    .footer-grid {
        flex-direction: column;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .split-content h2,
    .header-content h1 {
        font-size: 32px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .nav-brand {
        font-size: 20px;
    }

    .service-info h3 {
        font-size: 26px;
    }

    .price,
    .price-large {
        font-size: 36px;
    }

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

    .legal-page h1 {
        font-size: 32px;
    }
}