body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: #333; /* Основной цвет текста */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700; /* Жирный текст для заголовков */
}

/* Navbar Custom Styles */
.psy-navbar {
  background-color: #ffffff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.logo-img {
  height: 40px; 
  width: auto; 
  margin-right: 10px; 
  vertical-align: middle; 
}

.psy-navbar-brand {
  color: #0C6427; 
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
}

.psy-nav-links .nav-link {
  color: #555;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.psy-nav-links .nav-link:hover {
  color: #0C6427; 
}

.psy-btn-outline {
  border: 2px solid #0C6427; 
  color: #0C6427; 
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.psy-btn-outline:hover {
  background-color: #0C6427; 
  color: #ffffff;
}

.psy-language-btn {
  border: 2px solid #555;
  color: #555;
  background-color: transparent;
  font-weight: bold;
  border-radius: 50px;
}

.psy-language-dropdown .dropdown-item:hover {
  background-color: #0C6427; 
  color: #ffffff;
}

.psy-nav-link.active {
  color: #30964F !important; 
  font-weight: bold; 
}

/* Hero Section Styles */
.psy-hero {
  background: url('/images/bg.jpeg') no-repeat center center / cover;
  height: 80vh;
  padding-top: 100px;
}

.psy-hero-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 100px;
}

.psy-title {
  color: #2c3e50;
  font-size: 2.5rem;
}

.psy-hero-text {
  color: #555;
  font-size: 1.2rem;
}

.psy-btn-primary {
  background-color: #0C6427; 
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease;
  z-index: 1;
}

.psy-btn-primary:hover {
  border: 1px solid #0C6427;
  color: #0C6427;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.psy-btn-secondary {
  border: 2px solid #555;
  color: #555;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: bold;
  background-color: transparent;
  transition: all 0.3s ease;
}

.psy-btn-secondary:hover {
  background-color: #555;
  color: #ffffff;
}

.psy-hero-box .btn-group {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.custom-services-section {
  background-color: #f9f9f9;
}

/* Process Section Styles */
.process-section {
  background-color: #ffffff;
  padding: 2rem 0;
}

.process-list {
  list-style: none;
  padding: 0;
}

.process-item {
  margin-bottom: 1.5rem;
}

.process-number {
  color: #30964F; 
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 10px;
}

.process-item h4 {
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.process-img {
  max-width: 130%;
  height: auto;
  margin-left: -10%;
}

@media (max-width: 991px) {
  .process-img {
    max-width: 100%;
    margin-left: 0;
  }

  .process-section .col-12 {
    text-align: left;
  }
}

.process-section .col-lg-4 {
  max-width: 450px;
  margin-left: auto;
}


/* Doctors Section Styles */
.doctor-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.doctor-card .doctor-img {
  width: 100%;
  height: auto;
  border-bottom: 5px solid #30964F; 
}

.doctor-card .doctor-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctor-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.doctor-speciality {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
}

.doctor-description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.flag-icon {
  width: 20px;
  height: auto;
  object-fit: cover;
  display: inline-block;
}

.doctor-card .btn {
  background-color: #0C6427; 
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

.doctor-card .btn:hover {
  background-color: #094B1E; 
  transform: scale(1.05);
}

.doctor-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

/* FAQ Section Styles */
#faq {
  background-color: #f9f9f9;
}

#faq .psy-title {
  color: #2c3e50;
}

.custom-accordion .accordion-button {
  background-color: #ffffff;
  color: #2c3e50;
  font-weight: bold;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #e6f9f4; 
  color: #0C6427; 
  border-color: #0C6427;
}

.custom-accordion .accordion-button:hover {
  background-color: #f1fcf9; 
  border-color: #0C6427;
}

.custom-accordion .accordion-body {
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  color: #555555;
  line-height: 1.6;
}

.custom-accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-header {
  font-size: 1.1rem;
}

.custom-accordion .accordion-item:last-child .accordion-body {
  border-bottom: none;
}

/* Service Section Styles */
#service-evaluation img {
  max-height: 400px;
  object-fit: cover;
}

.accordion-button {
  background-color: #ffffff;
  color: #212529;
  font-weight: bold;
  border: none;
  outline: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.accordion-button:hover {
  background-color: #e9f7ef;
  color: #0C6427; 
}

.accordion-button:focus {
  box-shadow: none;
  background-color: #e9f7ef;
}

.accordion-button:not(.collapsed) {
  background-color: #e9f7ef;
  color: #0C6427; 
}

.accordion-body {
  font-size: 0.9rem;
  color: #6c757d;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #dee2e6;
}

.accordion-item:last-of-type {
  border-bottom: none;
}

#services img {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#services .col-lg-6 {
  margin-bottom: 20px;
}

/* CTA Section Styles */
#cta {
  background: linear-gradient(135deg, #0C6427, #28A745); 
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}


#cta h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d4ebdd; 
  line-height: 1.6;
}

#cta .btn {
  background-color: #ffffff;
  color: #0C6427; 
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#cta .btn:hover {
  background-color: #30964F; 
  color: #ffffff;
  transform: scale(1.05);
}

#cta .btn:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Contacts Section Styles */
#contacts {
  background-color: #f9f9f9;
}

#contacts p {
  color: #6c757d;
}


.info-box h6 {
  font-size: 1rem;
  color: #0C6427; 
}

.info-box p {
  font-size: 0.85rem;
  color: #6c757d;
}

#contacts .row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

#contacts .col-md-4 {
  flex: 1 1 30%;
  min-width: 300px;
}

.form-label {
  font-weight: 600; 
  font-size: 0.95rem; 
  color: #333333; 
  margin-bottom: 5px; 
}

.form-control {
  border: 1px solid #ced4da; 
  border-radius: 8px; 
  padding: 10px 15px; 
  font-size: 1rem; 
  transition: border-color 0.3s ease, box-shadow 0.3s ease; 
}

.form-control:focus {
  border-color: #0C6427; 
  box-shadow: 0 0 5px rgba(12, 100, 39, 0.3); 
  outline: none;
}

.btn-primary {
  background-color: #0C6427; 
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #094e1e; 
  transform: scale(1.03);
}


/* Testimonials Section Styles */
#testimonials {
  background-color: #ffffff;
}

.text-warning {
  color: #fbc02d !important;
}

.card.bg-secondary {
  background-color: #f8f9fa !important;
}

.card-text {
  line-height: 1.5;
}

.rounded-circle {
  font-weight: bold;
  
}

#testimonials .card img {
  height: 10px;
  width: auto;
}

.google-rating-logo {
  width: 100px; 
  height: auto; 
}

.text-warning {
  font-size: 1.2rem; 
}

/* Pricing Section Styles */
#pricing {
  background-color: #f8f9fa;
}

#pricing .price-card {
  height: 100%;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pricing .price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#pricing .price-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-bottom: 20px;
}

#pricing .price-title {
  font-size: 1.25rem;
  color: #212529; 
}

#pricing .price-text {
  font-size: 0.95rem;
  color: #6c757d; 
}

#pricing .price-amount {
  font-size: 1.2rem;
  color: #212529; 
}

.card {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card .text-warning {
  color: #f7c600; 
}

.card-body {
  padding: 1.5rem;
}

.rounded-circle {
  background-color: #0C6427; 
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  width: 40px;
  height: 40px;
}

.card-title {
  color: #0C6427; 
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.card-text {
  font-size: 0.9rem;
  color: #555555;
}

.text-light {
  color: #888888 !important;
}

[data-aos] {
  transition-property: transform, opacity;
  transition-timing-function: ease-out;
}
