@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  background-color: #ffffff;
  font-size: 16px;
}

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

.header {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}
.header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}
.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.header .nav {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}
.header .nav li {
  margin: 0;
}
.header .nav a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}
.header .nav a:hover {
  color: #2563eb;
  background-color: rgba(37, 99, 235, 0.1);
}
.header .nav a.active {
  color: #2563eb;
  background-color: rgba(37, 99, 235, 0.1);
  font-weight: 600;
}
.header .nav a.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, rgba(37, 99, 235, 0.8));
  border-radius: 2px 2px 0 0;
}
.header .header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.header .mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #1e293b;
  transition: all 0.3s;
}
@media (max-width: 968px) {
  .header .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    gap: 0.25rem;
  }
  .header .nav li {
    width: 100%;
  }
  .header .nav a {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    width: 100%;
    text-align: left;
  }
  .header .nav a.active::before {
    left: 0;
    transform: none;
    width: 4px;
    height: 100%;
    border-radius: 0 2px 2px 0;
  }
  .header .nav.active {
    display: flex;
  }
  .header .mobile-menu-toggle {
    display: flex;
  }
}

.footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.footer .footer-section h3 {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer .footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, rgba(37, 99, 235, 0.8));
  border-radius: 2px;
}
.footer .footer-section ul {
  list-style: none;
}
.footer .footer-section ul li {
  margin-bottom: 0.75rem;
}
.footer .footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
}
.footer .footer-section ul li a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s;
  color: #2563eb;
}
.footer .footer-section ul li a:hover {
  color: #fff;
  padding-left: 20px;
}
.footer .footer-section ul li a:hover::before {
  opacity: 1;
  left: 0;
}
.footer .footer-section p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.footer .footer-section p a {
  color: rgba(37, 99, 235, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}
.footer .footer-section p a:hover {
  color: rgba(37, 99, 235, 0.2);
  text-decoration: underline;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}
.btn.btn-primary {
  background-color: #2563eb;
  color: white;
}
.btn.btn-primary:hover {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn.btn-secondary {
  background-color: rgba(37, 99, 235, 0.8);
  color: white;
}
.btn.btn-secondary:hover {
  background-color: rgba(18.5714285714, 76.1428571429, 202.4285714286, 0.8);
}
.btn.btn-outline {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}
.btn.btn-outline:hover {
  background-color: #2563eb;
  color: white;
}
.btn.btn-white {
  background-color: white;
  color: #2563eb;
}
.btn.btn-white:hover {
  background-color: #ffffff;
}

.hero {
  color: #1e293b;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #ffffff;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.hero .hero-background .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.hero .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
}
.hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #1e293b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
    min-height: 500px;
  }
  .hero .hero-background .hero-image {
    object-position: center;
    opacity: 1;
  }
  .hero .hero-background .hero-overlay {
    background: rgba(255, 255, 255, 0.15);
  }
  .hero .hero-title {
    font-size: 2rem;
  }
  .hero .hero-subtitle {
    font-size: 1rem;
  }
}

.features {
  padding: 4rem 0;
  background-color: #ffffff;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.features .feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
  transition: all 0.3s;
}
.features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}
.features .feature-card .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
}
.features .feature-card .feature-icon svg {
  width: 32px;
  height: 32px;
}
.features .feature-card h3 {
  margin-bottom: 1rem;
  color: #1e293b;
  font-size: 1.25rem;
}
.features .feature-card p {
  color: #64748b;
  line-height: 1.6;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #1e293b;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #1e293b;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-page {
  padding: 3rem 0;
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-category-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}
.service-category-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
  background: rgba(37, 99, 235, 0.03);
}
.service-category-card .category-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  color: #2563eb;
}
.service-category-card h3 {
  margin-bottom: 0.75rem;
  color: #1e293b;
  font-size: 1.5rem;
}
.service-category-card p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-category-card .service-count {
  color: #2563eb;
  font-weight: 500;
  font-size: 0.9rem;
}

.services-list .service-item {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}
.services-list .service-item:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  background: rgba(37, 99, 235, 0.03);
}
.services-list .service-item h3 {
  margin-bottom: 0.75rem;
  color: #1e293b;
  font-size: 1.5rem;
}
.services-list .service-item .service-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.services-list .service-item .service-meta span {
  color: #64748b;
  font-size: 0.9rem;
}
.services-list .service-item p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.services-list .service-item .service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1rem;
}

.service-detail-page {
  padding: 3rem 0;
}

.service-detail-header {
  margin-bottom: 3rem;
  text-align: center;
}
.service-detail-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-detail-header .service-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: #64748b;
}

.service-detail-content {
  max-width: 900px;
  margin: 0 auto;
}
.service-detail-content .service-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1e293b;
  margin-bottom: 3rem;
}
.service-detail-content .service-features {
  background: rgba(37, 99, 235, 0.03);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.service-detail-content .service-features h2 {
  margin-bottom: 1.5rem;
  color: #1e293b;
}
.service-detail-content .service-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.service-detail-content .service-features ul li {
  padding-left: 1.5rem;
  position: relative;
  color: #1e293b;
}
.service-detail-content .service-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}
.service-detail-content .service-price-section {
  background: rgba(37, 99, 235, 0.03);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.service-detail-content .service-price-section .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1rem;
}

.specialists-page {
  padding: 3rem 0;
}

.specialists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.specialist-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}
.specialist-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-5px);
}
.specialist-card .specialist-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: rgba(37, 99, 235, 0.03);
}
.specialist-card .specialist-info {
  padding: 1.5rem;
}
.specialist-card .specialist-info h3 {
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-size: 1.25rem;
}
.specialist-card .specialist-info .specialist-position {
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.specialist-card .specialist-info .specialist-experience {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.specialist-card .specialist-info .specialist-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.specialist-card .specialist-info .specialist-specialties .specialty-tag {
  background: #ffffff;
  color: #1e293b;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
}

.specialist-detail-page {
  padding: 3rem 0;
}

.specialist-detail {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 968px) {
  .specialist-detail {
    grid-template-columns: 1fr;
  }
}
.specialist-detail .specialist-photo-section .specialist-photo {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.specialist-detail .specialist-photo-section .specialist-contact {
  background: rgba(37, 99, 235, 0.03);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.specialist-detail .specialist-photo-section .specialist-contact .contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.specialist-detail .specialist-photo-section .specialist-contact .contact-item:last-child {
  margin-bottom: 0;
}
.specialist-detail .specialist-photo-section .specialist-contact .contact-item svg {
  width: 20px;
  height: 20px;
  color: #2563eb;
}
.specialist-detail .specialist-info-section h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
.specialist-detail .specialist-info-section .specialist-position {
  color: #2563eb;
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.specialist-detail .specialist-info-section .specialist-experience {
  color: #64748b;
  margin-bottom: 2rem;
}
.specialist-detail .specialist-info-section .specialist-bio {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #1e293b;
  margin-bottom: 2rem;
}
.specialist-detail .specialist-info-section .specialist-education {
  margin-bottom: 2rem;
}
.specialist-detail .specialist-info-section .specialist-education h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.specialist-detail .specialist-info-section .specialist-education ul {
  list-style: none;
}
.specialist-detail .specialist-info-section .specialist-education ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #1e293b;
}
.specialist-detail .specialist-info-section .specialist-education ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}
.specialist-detail .specialist-info-section .specialist-specialties h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.specialist-detail .specialist-info-section .specialist-specialties .specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.specialist-detail .specialist-info-section .specialist-specialties .specialties-list .specialty-tag {
  background: #ffffff;
  color: #1e293b;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
}

.appointment-page {
  padding: 3rem 0;
}

.appointment-form-section {
  max-width: 800px;
  margin: 0 auto;
}

.appointment-form {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  padding: 2.5rem;
}
.appointment-form .form-section {
  margin-bottom: 2rem;
}
.appointment-form .form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}
.appointment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .appointment-form .form-row {
    grid-template-columns: 1fr;
  }
}
.appointment-form .form-group {
  margin-bottom: 1.5rem;
}
.appointment-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1e293b;
}
.appointment-form .form-group input,
.appointment-form .form-group textarea,
.appointment-form .form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}
.appointment-form .form-group input:focus,
.appointment-form .form-group textarea:focus,
.appointment-form .form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.appointment-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.appointment-form .form-group .form-hint {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}
.appointment-form .form-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: normal;
  cursor: pointer;
}
.appointment-form .form-group .checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.appointment-form .form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

.about-page {
  padding: 3rem 0;
}

.about-content .about-intro {
  text-align: center;
  margin-bottom: 4rem;
}
.about-content .about-intro h2 {
  margin-bottom: 1rem;
}
.about-content .about-intro p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.about-content .about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.about-content .stat-card {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}
.about-content .stat-card .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.about-content .stat-card .stat-label {
  color: #64748b;
  font-size: 1rem;
}
.about-content .about-values {
  margin-bottom: 4rem;
}
.about-content .about-values h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.about-content .about-values .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.about-content .about-values .value-card {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
  transition: all 0.3s;
}
.about-content .about-values .value-card:hover {
  background: rgba(37, 99, 235, 0.03);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}
.about-content .about-values .value-card h3 {
  margin-bottom: 1rem;
  color: #2563eb;
  font-size: 1.25rem;
}
.about-content .about-values .value-card p {
  color: #64748b;
  line-height: 1.7;
}

.licenses-page {
  padding: 3rem 0;
}

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.license-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}
.license-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  background: rgba(37, 99, 235, 0.03);
}
.license-card .license-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: #2563eb;
}
.license-card h3 {
  margin-bottom: 0.75rem;
  color: #1e293b;
}
.license-card p {
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.license-card .license-number {
  color: #2563eb;
  font-weight: 500;
  font-size: 0.9rem;
}

.faq-page {
  padding: 3rem 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}
.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}
.faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.faq-item .faq-question:hover {
  background-color: rgba(37, 99, 235, 0.03);
}
.faq-item .faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 500;
}
.faq-item .faq-question .faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2563eb;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-item .faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.blog-page {
  padding: 3rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}
.blog-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-5px);
  background: rgba(37, 99, 235, 0.03);
}
.blog-card .blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #ffffff 0%, rgba(37, 99, 235, 0.05) 100%);
  display: block;
  transition: transform 0.3s;
}
.blog-card:hover .blog-image {
  transform: scale(1.05);
}
.blog-card .blog-content {
  padding: 1.5rem;
}
.blog-card .blog-content .blog-date {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.blog-card .blog-content h3 {
  margin-bottom: 0.75rem;
  color: #1e293b;
  font-size: 1.25rem;
  line-height: 1.4;
}
.blog-card .blog-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-card .blog-content .blog-link {
  color: #2563eb;
  font-weight: 500;
  font-size: 0.9rem;
}

.article-detail-page {
  padding: 3rem 0;
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
}
.article-content .article-header {
  text-align: center;
  margin-bottom: 3rem;
}
.article-content .article-header .article-date {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.article-content .article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.article-content .article-header .article-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  color: #64748b;
  font-size: 0.9rem;
}
.article-content .article-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(37, 99, 235, 0.05) 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: block;
}
.article-content .article-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #1e293b;
}
.article-content .article-body h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1e293b;
}
.article-content .article-body h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
}
.article-content .article-body p {
  margin-bottom: 1.5rem;
}
.article-content .article-body ul, .article-content .article-body ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}
.article-content .article-body ul li, .article-content .article-body ol li {
  margin-bottom: 0.75rem;
}

.contacts-page {
  padding: 3rem 0;
}

.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 968px) {
  .contacts-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info .contact-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
  transition: all 0.3s;
}
.contact-info .contact-card:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
  background: rgba(37, 99, 235, 0.03);
}
.contact-info .contact-card h2 {
  margin-bottom: 1.5rem;
  color: #2563eb;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-info .contact-card h2::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #2563eb, rgba(37, 99, 235, 0.8));
  border-radius: 2px;
}
.contact-info .contact-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s;
}
.contact-info .contact-card .contact-item:hover {
  background: rgba(37, 99, 235, 0.15);
}
.contact-info .contact-card .contact-item:last-child {
  margin-bottom: 0;
}
.contact-info .contact-card .contact-item svg {
  width: 24px;
  height: 24px;
  color: #2563eb;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-info .contact-card .contact-item div {
  flex: 1;
}
.contact-info .contact-card .contact-item div strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-size: 1rem;
}
.contact-info .contact-card .contact-item div a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}
.contact-info .contact-card .contact-item div a:hover {
  color: #2563eb;
  text-decoration: underline;
}
.contact-info .contact-card .contact-item div p {
  color: #64748b;
  margin: 0.25rem 0;
  line-height: 1.6;
}

.contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}
.contact-form h2 {
  margin-bottom: 2rem;
  color: #2563eb;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-form h2::before {
  content: "";
  width: 4px;
  height: 28px;
  background: linear-gradient(135deg, #2563eb, rgba(37, 99, 235, 0.8));
  border-radius: 2px;
}
.contact-form .form-group {
  margin-bottom: 1.75rem;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: white;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  background: #fafbfc;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder,
.contact-form .form-group select::placeholder {
  color: #94a3b8;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.contact-form .form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e3a8a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  appearance: none;
}
.contact-form .form-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: normal;
  cursor: pointer;
  padding: 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s;
}
.contact-form .form-group .checkbox-label:hover {
  background: rgba(37, 99, 235, 0.15);
}
.contact-form .form-group .checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #2563eb;
}
.contact-form button[type=submit] {
  width: 100%;
  padding: 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s;
}
.contact-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.9);
}

.map-section {
  margin-top: 4rem;
}
.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1e293b;
}
.map-section .map-placeholder {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 0.75rem;
  border: 2px dashed rgba(37, 99, 235, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.map-section .map-placeholder:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.map-section .map-placeholder .map-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #94a3b8;
  display: block;
}
.map-section .map-placeholder h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}
.map-section .map-placeholder p {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.map-section .map-placeholder p.map-note {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  font-style: italic;
}
.map-section .map-placeholder .address-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 0.5rem;
  border-left: 4px solid #2563eb;
}
.map-section .map-placeholder .address-box p {
  margin: 0;
  color: #1e293b;
  font-weight: 500;
}
.map-section .map-container {
  height: 500px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: #ffffff;
  position: relative;
}
.map-section .map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-section .map-container .map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 2rem;
  color: white;
}
.map-section .map-container .map-overlay .map-address {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.map-section .map-container .map-overlay .map-info {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

/*# sourceMappingURL=main.css.map */
