:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --accent: #090a33;
  --muted: #5b6b7a;
  --radius: 12px;
  --maxw: 1100px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
background: #ffffff;
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 249, 255, 1) 50%, rgb(218, 219, 247) 100%);
  color: #0b1220;
  -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wrap {
  max-width: var(--maxw);
  margin: 28px auto;
  padding: 20px;
}

.profileImage {
  width: 100px; height: 100px; border-radius: 50%; object-fit: cover;">
}

.page_img_std {
  width: 46%;
  margin-left: 2%;
}

.image_container {

  display: flex;
}

.logo_text {
  font-weight: 800; color: #0b1220;"
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo {
height: 60px; 
width: 60px; 
object-fit: contain; 
margin-right: 12px;"
}

nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.cta {
  background: var(--accent);
  font-weight: 700;
  padding:10px 12px;
  border-radius:8px;
  border:1px;
  color: #fff;
  text-decoration:none;

}

main {
  margin-top: 20px;
}

.hero {
  display: grid;

  gap: 20px;
  align-items: start;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.06);
}

h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

p.lead {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.service {
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(14, 165, 164, 0.05),
    rgba(14, 165, 164, 0.02)
  );
}

.cols {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

form {
  display: grid;
  gap: 10px;
}

input,
textarea,
select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e6eef6;
  background: transparent;
}

button {
  padding: 10px 12px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

#privPolSection {
  display: none;
  
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.testimonial {
  background: linear-gradient(180deg, #fff, #fbfeff);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #eef6f6;
}

.map-placeholder {
  height: 200px;
  border-radius: 10px;
  background: linear-gradient(180deg, #eef7f7, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px dashed #e6eef6;
}

footer {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}


//TEST CSS
.pricing-container {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card */
.pricing-card {
  margin-top: 2.5%;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Highlighted middle option */
.pricing-card.featured {
  border: 2px solid #4f46e5;
}

/* Header Button */
.pricing-header {
    display: grid;
    grid-template-columns: 1fr 80px 24px; /* title | price | arrow */
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.pricing-header:hover {
  background: rgba(78, 70, 229, 0.25);
}

.price {
  color: #4f46e5;
  font-weight: 700;
}

.arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* Content */
.pricing-content {
  max-height: 0;
  opacity: 0;
  padding: 0 24px;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.pricing-content p,
.pricing-content li {
  color: #444;
  line-height: 1.6;
}

.pricing-content ul {
  padding-left: 20px;
}

/* Open State */
.pricing-card.open .pricing-content {
  max-height: 300px;
  opacity: 1;
  padding: 24px 24px 24px 24px;
  
}

.pricing-card.open .arrow {
  transform: rotate(180deg);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .cols {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}
