<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Child Custody Strategy Clinics - Responsive CSS */

/* Mobile First Approach - Base styles above are for mobile */

/* Base styles for team members (mobile first) */
.team-member {
  position: relative;
  margin-bottom: 2rem;
}

.team-member .img-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-deep-blue);
}

.team-member p {
  font-size: 0.9rem;
  color: var(--primary-warm-gray);
  margin-bottom: 0;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  /* Process and Price cards base styles */
  .process-step .card-body,
  .price-card .card-body {
    padding: 1.5rem;
  }

  .team-member .img-wrapper {
    width: 140px;
    height: 140px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  /* Enable Swiper autoplay and effects for tablets and up */
  .swiper-slide {
    transition: transform 0.5s ease;
  }
  
  /* Hero section adjustments */
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.25rem;
  }
  
  /* Service cards - 2 columns */
  .service-card {
    max-width: 48%;
    display: inline-block;
    margin-right: 2%;
  }
  
  /* Team members - 2 columns */
  .team-member {
    margin-bottom: 0;
  }
  
  .team-member .img-wrapper {
    width: 160px;
    height: 160px;
    margin-bottom: 1.5rem;
  }
  
  .team-member h4 {
    font-size: 1.2rem;
  }
  
  .team-member p {
    font-size: 1rem;
  }
  
  /* Timeline responsive */
  .timeline-content {
    max-width: 45%;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
    margin-left: 0;
  }
  
  /* Process steps adjustments */
  .process-step {
    margin-bottom: 2rem;
  }
  
  .process-step .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Price cards adjustments */
  .price-card {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .price-card:hover {
    transform: translateY(-10px);
  }
  
  .price-card.featured {
    transform: translateY(-10px);
  }
  
  .price-card.featured:hover {
    transform: translateY(-15px);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  /* Hero section full desktop */
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section p {
    font-size: 1.5rem;
  }
  
  /* Service cards - 3 columns */
  .service-card {
    max-width: 32%;
    margin-right: 2%;
  }
  
  /* Team members - 3 columns */
  .team-member {
    margin-right: 2%;
  }
  
  .team-member .img-wrapper {
    width: 180px;
    height: 180px;
  }
  
  .team-member .card {
    padding: 1.5rem;
  }
  
  .team-member h4 {
    font-size: 1.25rem;
  }
  
  /* Features - 2 columns */
  .feature-card {
    max-width: 48%;
    display: inline-block;
    margin-right: 2%;
  }
  
  /* Process steps - full desktop */
  .process-step .card-body {
    padding: 2rem;
  }
  
  .process-step .process-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  /* Price cards - full desktop */
  .price-card .card-body {
    padding: 2.5rem;
  }
  
  .price-card .price-amount {
    font-size: 3rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  /* Service cards - 3 columns with better spacing */
  .service-card {
    max-width: 31%;
    margin-right: 3.5%;
  }
  
  /* Team members - 5 columns */
  .team-member {
    max-width: 18%;
    margin-right: 2.5%;
  }
  
  .team-member .img-wrapper {
    width: 200px;
    height: 200px;
  }
  
  /* Gallery - 4 columns */
  .gallery-item {
    max-width: 23%;
    display: inline-block;
    margin-right: 2%;
  }
  
  /* Process steps - extra spacing */
  .process-step .card-body {
    padding: 2.5rem;
  }
  
  /* Price cards - extra spacing */
  .price-card .card-body {
    padding: 3rem;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Mobile specific styles (under 768px) */
@media (max-width: 767.98px) {
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-container {
    --swiper-autoplay-delay: 0;
  }
  
  .swiper-slide {
    transition: none !important;
    transform: none !important;
  }
  
  .swiper-effect-fade,
  .swiper-effect-cube,
  .swiper-effect-coverflow,
  .swiper-effect-flip,
  .swiper-effect-creative {
    display: none !important;
  }
  
  /* Conservative mobile typography */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  /* Mobile hero adjustments */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Stack sections vertically on mobile */
  .service-card,
  .team-member,
  .feature-card,
  .price-card,
  .process-step,
  .gallery-item {
    max-width: 100%;
    display: block;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  /* Mobile navigation */
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    margin: 0;
  }
  
  /* Mobile contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-control {
    padding: 1rem;
    font-size: 1rem;
  }
  
  /* Mobile timeline */
  .timeline::before {
    left: 1rem;
  }
  
  .timeline-content {
    margin-left: 3rem;
    margin-right: 0;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
    margin-right: 0;
  }
  
  /* Mobile footer */
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .footer .col-md-3,
  .footer .col-md-4 {
    margin-bottom: 2rem;
  }
  
  /* Hide decorative elements on mobile */
  .hero-blob {
    display: none;
  }
  
  /* Mobile padding adjustments */
  .section {
    padding: 2rem 0;
  }
  
  /* Mobile button adjustments */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Mobile card adjustments */
  .service-card-body,
  .blog-card-body,
  .case-study-content {
    padding: 1.5rem;
  }
  
  .feature-card,
  .review-card,
  .info-card {
    padding: 1.5rem;
  }
  
  /* Process steps mobile */
  .process-step {
    margin-bottom: 1.5rem;
  }
  
  .process-step .card-body {
    padding: 1.25rem;
  }
  
  .process-step .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  /* Price cards mobile */
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card .card-body {
    padding: 1.25rem;
  }
  
  .price-card .price-amount {
    font-size: 2rem;
  }
  
  .price-card.featured {
    transform: none;
  }

  .team-member {
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-member .card {
    padding: 1rem;
  }
}

/* Small mobile devices (under 576px) */
@media (max-width: 575.98px) {
  /* Extra small mobile adjustments */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.125rem; }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .hero-section p {
    font-size: 0.9rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  /* Smaller padding for very small screens */
  .section {
    padding: 1.5rem 0;
  }
  
  .contact-form,
  .feature-card,
  .review-card,
  .info-card {
    padding: 1rem;
  }
  
  .service-card-body,
  .blog-card-body,
  .case-study-content {
    padding: 1rem;
  }
  
  /* Team member images smaller on small mobile */
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  /* FAQ adjustments */
  .faq-question,
  .faq-answer {
    padding: 0.75rem;
  }
  
  /* Process steps extra small */
  .process-step .card-body {
    padding: 1rem;
  }
  
  .process-step .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Price cards extra small */
  .price-card .card-body {
    padding: 1rem;
  }
  
  .price-card .price-amount {
    font-size: 1.75rem;
  }
  
  .price-card ul {
    margin-bottom: 1rem;
  }
  
  .price-card ul li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .team-member .img-wrapper {
    width: 100px;
    height: 100px;
  }

  .team-member h4 {
    font-size: 1rem;
  }

  .team-member p {
    font-size: 0.875rem;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .section {
    padding: 1.5rem 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Crisp images for retina displays */
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero-blob,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: none !important;
    color: #000 !important;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
  }
  
  .footer {
    background: none !important;
    color: #000 !important;
  }
}

/* Focus and accessibility improvements */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid currentColor;
  }
}

/* Custom responsive styles */
@media (max-width: 767.98px) {
  /* Typography adjustments */
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  /* Mobile navigation */
  .navbar-custom .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-custom .nav-link {
    padding: 0.75rem 1rem;
  }
  
  /* Mobile hero section */
  .hero-section {
    padding: 2rem 0;
  }
}

/* Small devices (under 576px) */
@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .hero-section p {
    font-size: 0.9rem;
  }
}

/* Print styles */
@media print {
  .navbar-custom,
  .hero-section::before {
    display: none !important;
  }
  
  .hero-section {
    background: none !important;
    color: #000 !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
  }
  
  .footer-custom {
    background: none !important;
    color: #000 !important;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .btn-custom-primary {
    border: 2px solid currentColor;
  }
} </pre></body></html>