
*,
*::before,
*::after {
  box-sizing: border-box;
}

a:focus,
button:focus,
input:focus {
  outline: 3px solid #2cc6c6;
  outline-offset: 2px;
}

html {
  font-size: 16px;
}

body{margin:0;font-family:system-ui, -apple-system, BlinkMacSystemFont,sans-serif;color:#1a1a1a;min-height:100vh;display:flex;flex-direction:column;line-height: 1.6;}
a{text-decoration:none}

header {
    background:#0B2A5B;
    width: 100%;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}


.btn{background:#2EC4C6;color:#003b3d;padding:12px 22px;border-radius:6px;font-weight:600}

.hero{
 background:
 linear-gradient(rgba(11,42,91,.6),rgba(11,42,91,.6)),
 url('../images/pexels-tima-miroshnichenko-5355825.jpg') center/cover no-repeat;
 padding:150px 20px;
 text-align:center;
 color:#fff
}
.hero h1{font-size:46px;margin-bottom:16px}
.hero p{font-size:16px;max-width:720px;margin:0 auto 30px}

main{flex:1}
.section{max-width:1200px;margin:auto;padding:80px 20px}
.services-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 12px auto 48px;
  color: #6b7280;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #1e3a8a;
}

.service-card p {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}

form{max-width:520px;margin:auto;display:flex;flex-direction:column;gap:16px}
input,textarea{padding:14px;border-radius:8px;border:1px solid #ccc}
button{background:#2EC4C6;border:none;padding:14px;border-radius:8px;font-weight:600}

footer{background:#071b3a;color:#fff;text-align:center;padding:50px 20px}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 14px;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #22d3ee;
}


.navbar {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.navbar a {
  
  font-weight: 500;
  color:#fff;
  text-decoration: none;
  
}

.navbar a:hover {
  color:#22d3ee;
}

.navbar a.active {
  color:#22d3ee;
}

.cta {
  margin-left: 16px;
  padding: 10px 20px;
  background: #2EC4C6;
  color: #003b3d !important;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* Fix vertical alignment */
.navbar,
.cta {
  align-items: center;
  display: flex;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 40px 24px;
}
.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-form-box form input,
.contact-form-box form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.contact-form-box button {
  width: 100%;
  padding: 14px;
  background: #1e3a8a;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
}

.contact-form-box p { 
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}

.clinic-info h2 {
  margin-bottom: 20px;
  color: #0f766e;
}

.clinic-info p {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}


/* Shared Page Section */
.page-section {
  padding: 80px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin:  auto;
  padding: 1rem;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* Privacy Page */

.privacy-sub-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.privacy-sub-section p {
  font-size: 16px;
  color: #374151;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .navbar {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 12px;
    flex-wrap: wrap;
  }
 
  .cta {
    width: 100%;
    text-align: center;
    margin: 12px 0 0;
  }
 .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero h1{font-size:34px}
}

