body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #ffeed2;
}

.therapist-container {
    background: #ffedd1;
    padding: 70px 20px;
}

.booking-card label {
    color: #1f4432;
    font-size: 15px;
}

.therapist-container .profile-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}



.left-column .card {
    background: #325444;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    transition: transform 0.2s;
}

.left-column .card:hover {
    transform: translateY(-3px);
}

.profile-card {
    text-align: center;
}

.profile-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #60a37f;
    object-fit: cover;
    margin-bottom: 12px;
}

.profile-card h2 {
    display: flex;
    font-size: 24px;
    margin: 15px 0 10px;
    color: #fff;
}

.profile-card .icons {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #fff;
    flex-wrap: wrap;
}

.profile-card .icons i {
    margin-right: 6px;
}

.career-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #fff;
}

.career-card ul {
    list-style: none;
    padding-left: 0;
}

.career-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}

.career-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 18px;
}

.right-column {
    flex: 2;
    color: #fff;
}

.right-column h2 {
    font-size: 26px;
    margin-top: 0;
    color: #fff;
}

.right-column h3 {
    font-size: 16px;
    margin: 14px 0 8px;
    color: #fff;
}

.right-column p,
.right-column ul {
    font-size: 15px;
    line-height: 1.6;
}


.therapist-detail {
    background: #325444;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    transition: transform 0.2s;
}

.therapist-detail:hover {
    transform: translateY(-3px);}

.separator {
    text-align: center;
    margin: 32px 0 24px;
    position: relative;
}

.separator::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #325444;
    position: absolute;
    top: 50%;
}

.separator span {
    position: relative;
    background: #ffedd1;
    padding: 0 14px;
    color: #333;
    font-size: 14px;
}

.booking-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 100%;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.booking-card h3 {
    margin: 19px 0 30px;
    color: #1f4432;
    font-size: 30px;
}

.booking-card input,
.booking-card textarea {
    width: 100%;
    padding: 10px 12px;
    margin: 14px 0;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 14px;
}

.booking-card input:focus,
.booking-card textarea:focus {
    border-color: #60a37f;
    outline: none;
    box-shadow: 0 0 0 2px rgba(96, 163, 127, 0.2);
}

.booking-card button {
    background: #60a37f;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.booking-card button:hover {
    background: #4e8b67;
}

.paypal-button {
    display: inline-block;
    background: #f9a03e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 14px;
    transition: background 0.3s;
}

.paypal-button:hover {
    background: #e08c2c;
}

@media(max-width: 768px) {
    .therapist-container .profile-content {
        flex-direction: column;
    }

    .right-column {
        padding-top: 24px;
    }
}


.available-days {
    margin-bottom: 1rem;
  }
  
  .days-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .day-badge {
    background-color: #e0f7fa;
    color: #00796b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
  }
  
  #booking_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
  }
  
  .btn-submit {
    padding: 12px 20px;
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .btn-submit:hover {
    background-color: #004d40;
  }