body {
  font-family: 'Brawler', serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #ffffff;
  color: #2c2c2c;
}

.header {
  background-color: #dcefff;
  color: black;
  padding: 30px 0;
}

.header h1 {
  font-weight: bold;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  background-color: #91ceff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.topbar a,
.dropbtn {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.topbar a:hover,
.topbar .active,
.dropdown:hover .dropbtn {
  background-color: #0052cc;
  font-weight: bold;
}

.dropdown {
  position: relative;
}

.dropbtn {
  border: none;
  outline: none;
  background-color: transparent;
  font-family: inherit;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  min-width: 210px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1001;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  display: block;
  text-align: left;
  border-radius: 0;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hero-box,
.info-box,
.insurance-box {
  background-color: #dcefff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box {
  background-color: #ffffff;
}

.blue-box {
  background-color: #91ceff;
}

.insurance-box {
  background-color: #91ceff;
}

.lead-text {
  font-size: 1.3rem;
  font-weight: bold;
}

.card {
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.custom-btn {
  background-color: #f18535;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-family: 'Brawler', serif;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 8px;
}

.secondary-btn {
  background-color: #0052cc;
}

.custom-btn:hover {
  background-color: #3d1d04;
  color: white;
  cursor: pointer;
}

.form-box {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-box label {
  display: block;
  font-weight: bold;
  margin-top: 15px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-family: inherit;
}

.form-box textarea {
  min-height: 130px;
}

.footer {
  background-color: #0052cc;
  color: white;
  font-size: 14px;
}

@media (max-width: 700px) {
  .topbar {
    gap: 0.5rem;
  }

  .topbar a,
  .dropbtn {
    font-size: 16px;
    padding: 8px 10px;
  }

  .dropdown-content {
    left: auto;
    right: 0;
  }
}

.therapists-section {
    padding: 60px 20px;
}

.therapists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.therapist-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: white;
}

.therapist-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 5px solid #000000; 
}

.therapist-card h3 {
    margin: 0 0 5px 0;
}

.therapist-card p {
    margin: 0;
    color: #666;
}

.owner-card {
    max-width: 500px;
    margin: 0 auto 60px auto;
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
}

.owner-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #000000; 
    margin-bottom: 15px;
}

.owner-card h2 {
    margin: 0;
    font-size: 2rem;
}

.owner-card p {
    margin-top: 8px;
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 1200px) {
    .therapists-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .therapists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .therapists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .therapist-card img {
        width: 140px;
        height: 140px;
    }
}

.button {
  background-color: #001b45;
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  text-decoration: none !important;
}

.buttonfb{
  border-radius:20px;
  text-decoration: none !important;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slide-up 1.2s ease-out forwards;
}
