/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
}

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

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c7a7b;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #2c7a7b;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #2c7a7b;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #234e52;
}

.btn-secondary {
  background-color: #4299e1;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #3182ce;
}

.btn-small {
  padding: 8px 16px;
  font-size: 16px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}

.page-header {
  background-color: #e6f7f7;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 20px;
  color: #4a5568;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  font-size: 22px;
  color: #2c7a7b;
  margin-bottom: 1rem;
}

.card p {
  color: #4a5568;
  font-size: 17px;
}

/* Approach Section */
.approach {
  background-color: #ffffff;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-content {
  text-align: left;
}

.approach-text {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.approach-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Specialists Preview */
.specialists-preview {
  background-color: #f7fafc;
}

.specialist-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.specialist-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.specialist-info h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.specialist-info p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

/* Facilities */
.facilities-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.facility-item h3 {
  font-size: 22px;
  color: #2c7a7b;
  margin-bottom: 0.5rem;
}

.facility-item p {
  font-size: 17px;
  color: #4a5568;
}

/* FAQ */
.faq {
  background-color: #ffffff;
}

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

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  font-size: 20px;
  color: #2c7a7b;
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 18px;
  color: #4a5568;
}

/* Location */
.location-grid {
  max-width: 600px;
  margin: 0 auto;
}

.location-info {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item strong {
  display: block;
  font-size: 20px;
  color: #2c7a7b;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 18px;
  color: #4a5568;
}

.info-item a {
  color: #4299e1;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Forms */
.contact-form {
  background-color: #f7fafc;
}

.form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c7a7b;
}

.error-message {
  display: block;
  color: #e53e3e;
  font-size: 16px;
  margin-top: 0.5rem;
}

/* Services Detail */
.services-hero-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-detail {
  margin-bottom: 3rem;
}

.service-detail h2 {
  font-size: 28px;
  color: #2c7a7b;
  margin-bottom: 1rem;
}

.service-detail h3 {
  font-size: 22px;
  color: #2c3e50;
  margin: 1.5rem 0 0.5rem;
}

.service-detail p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 1rem;
}

.service-detail ul {
  margin: 1rem 0 1rem 2rem;
}

.service-detail li {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.service-cta {
  background-color: #e6f7f7;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.service-cta h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-cta p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

/* Specialists Content */
.specialists-main-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.specialists-intro {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.specialists-intro h2 {
  font-size: 32px;
  color: #2c7a7b;
  margin-bottom: 1rem;
}

.specialists-intro p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 1rem;
}

.specialist-profile {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.specialist-profile h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.specialist-title {
  font-size: 18px;
  color: #2c7a7b;
  font-weight: 600;
  margin-bottom: 1rem;
}

.specialist-credentials {
  margin: 1rem 0 1rem 2rem;
}

.specialist-credentials li {
  font-size: 17px;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.specialist-profile p {
  font-size: 18px;
  color: #4a5568;
  margin-top: 1rem;
}

.team-commitment {
  background-color: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.team-commitment h2 {
  font-size: 28px;
  color: #2c7a7b;
  margin-bottom: 1rem;
}

.team-commitment p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 1rem;
}

.specialists-cta {
  background-color: #e6f7f7;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.specialists-cta h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.specialists-cta p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-section h2,
.contact-form-section h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 2rem;
}

/* Thank You Page */
.thank-you {
  min-height: 400px;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
  font-size: 36px;
  color: #2c7a7b;
  margin-bottom: 1.5rem;
}

.thank-you-message {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.thank-you-content p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 2rem;
}

.thank-you-content a {
  color: #4299e1;
  text-decoration: none;
}

.thank-you-content a:hover {
  text-decoration: underline;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Legal Pages */
.legal-content {
  background-color: #ffffff;
}

.legal-content article {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  color: #2c7a7b;
  margin: 2rem 0 1rem;
}

.legal-content h3 {
  font-size: 22px;
  color: #2c3e50;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1rem 2rem;
}

.legal-content li {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #4299e1;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: #718096;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

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

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-col p,
.footer-col li {
  font-size: 16px;
  color: #cbd5e0;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #cbd5e0;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
}

.footer-bottom p {
  font-size: 16px;
  color: #cbd5e0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 1rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  font-size: 16px;
  margin: 0;
}

.cookie-content a {
  color: #4299e1;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    height: 400px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .approach-grid,
  .specialist-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .thank-you-actions {
    flex-direction: column;
  }
}
