/* Reset and Base Styles */
* {
    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: #333;
    background-color: #fff;
}

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

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

a:hover {
    color: #1d4ed8;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

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

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

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

/* Header */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 12px;
    color: #9ca3af;
    padding: 5px 10px;
    background: #f3f4f6;
    border-radius: 3px;
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px 40px;
    background: #f9fafb;
}

.split-right {
    padding: 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111827;
}

.hero-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

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

/* Buttons */
.cta-primary,
.cta-secondary,
.cta-large {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #2563eb;
    color: #fff;
}

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

.cta-secondary {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.cta-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Intro Section */
.intro-section {
    padding: 80px 20px;
    background: #fff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #111827;
}

.intro-section p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Split Sections */
.split-section,
.split-section-reverse {
    display: flex;
    align-items: stretch;
}

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

.split-section .split-left,
.split-section .split-right,
.split-section-reverse .split-left,
.split-section-reverse .split-right {
    flex: 1;
    min-width: 300px;
}

.split-section img,
.split-section-reverse img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.content-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111827;
}

.content-block p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
}

.inline-cta {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    margin-top: 10px;
    border-bottom: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

/* Benefits Grid */
.benefits-grid {
    padding: 80px 20px;
    background: #f9fafb;
}

.benefits-grid h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.benefits-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
}

.benefit-card p {
    font-size: 16px;
    color: #6b7280;
}

/* Testimonials */
.testimonial-section {
    padding: 80px 20px;
    background: #1f2937;
    color: #fff;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 14px;
    color: #9ca3af;
    font-style: normal;
}

/* Services Highlight */
.services-highlight {
    padding: 80px 20px;
    background: #fff;
}

.services-highlight h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 35px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.1);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111827;
}

.service-item p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
}

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

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

.service-select:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #111827;
}

.form-section > div > p {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    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: #2563eb;
}

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Disclaimer */
.disclaimer-section {
    padding: 60px 20px;
    background: #fef3c7;
}

.disclaimer {
    font-size: 14px;
    color: #92400e;
    line-height: 1.8;
    text-align: center;
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.sticky-cta button {
    padding: 14px 28px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Service Detail Split */
.service-detail-split {
    display: flex;
    margin-bottom: 60px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111827;
}

.service-detail-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-features {
    margin: 30px 0;
    padding: 25px;
    background: #f9fafb;
    border-radius: 8px;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111827;
}

.service-features ul {
    list-style-position: inside;
    color: #4b5563;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.pricing-block {
    margin: 25px 0;
    padding: 20px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #6b7280;
}

.pricing-block .price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #2563eb;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Page Styles */
.about-split {
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.about-content {
    padding: 40px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111827;
}

.about-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
}

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

.approach-split,
.philosophy-split {
    display: flex;
    padding: 60px 0;
}

.approach-split.reverse,
.philosophy-split.reverse {
    flex-direction: row-reverse;
}

.approach-content,
.philosophy-content {
    padding: 40px;
}

.approach-content h2,
.philosophy-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111827;
}

.approach-content p,
.philosophy-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
}

.experience-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.experience-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #111827;
}

.experience-section p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.commitment-section {
    padding: 80px 20px;
    background: #fff;
}

.commitment-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.commitment-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.commitment-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 35px;
    background: #f9fafb;
    border-radius: 12px;
}

.commitment-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
}

.commitment-item p {
    font-size: 16px;
    color: #6b7280;
}

/* Contact Page */
.contact-split {
    display: flex;
    padding: 60px 0;
}

.contact-info {
    padding: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #111827;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111827;
}

.info-block p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.location-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.location-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 25px;
    color: #111827;
}

.location-section > p {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.location-card {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
}

.location-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111827;
}

.location-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.availability-section {
    padding: 80px 20px;
    background: #fff;
}

.availability-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    color: #111827;
}

.availability-section p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.faq-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111827;
}

.faq-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.final-cta {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111827;
}

.final-cta p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-page {
    padding: 80px 20px;
    min-height: 60vh;
}

.thanks-content h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #10b981;
}

.thanks-content > p {
    font-size: 18px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
}

.service-confirmation {
    text-align: center;
    padding: 25px;
    background: #ecfdf5;
    border-radius: 12px;
    margin-bottom: 50px;
}

.service-selected {
    font-size: 20px;
    color: #047857;
    margin-bottom: 10px;
}

.price-info {
    font-size: 18px;
    color: #059669;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #111827;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111827;
}

.step p {
    font-size: 16px;
    color: #6b7280;
}

.thanks-actions {
    margin-bottom: 40px;
}

.thanks-actions h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
    color: #111827;
}

.thanks-actions > p {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    border: none;
}

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

.btn-secondary {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.contact-reminder {
    text-align: center;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
}

.contact-reminder p {
    font-size: 16px;
    color: #6b7280;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #111827;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #111827;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #111827;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #374151;
}

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

.legal-page ul {
    margin: 15px 0 15px 30px;
    color: #4b5563;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.updated-date {
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .split-section-reverse,
    .service-detail-split,
    .about-split,
    .approach-split,
    .philosophy-split,
    .contact-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

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

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

    .main-nav {
        gap: 15px;
    }

    .benefits-container,
    .services-split-grid,
    .testimonial-grid,
    .values-grid,
    .commitment-grid,
    .faq-grid,
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta button {
        padding: 12px 24px;
        font-size: 14px;
    }

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

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

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

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

    .logo {
        font-size: 20px;
    }

    .services-highlight h2,
    .benefits-grid h2,
    .intro-section h2,
    .cta-section h2 {
        font-size: 28px;
    }
}