/* ---------- GLOBAL OVERFLOW FIX ---------- */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: 'Poppins', Arial, sans-serif;

  background: #fff;
}

/* ---------- NAV CONTAINER WIDTHS ---------- */
.nav-container,
.container {
  width: 85vw;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 0px ;
  transition: width 0.2s;

}

@media (max-width: 1200px) {
  .nav-container,
  .container {
    width: 80vw;
    padding: 60px 0px ;
  }
}

@media (max-width: 912px) {
  .nav-container,
  .container,
  .custom-header,
  .header-top  {
   width: 85vw !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0px 15px!important;
    box-sizing: border-box;
  }
}

@media (max-width: 700px) {
  .nav-container,
  .container,
  .custom-header,
  .header-top {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0px 5px!important;
    box-sizing: border-box;
  }
}

//* ---------- HEADER BASE ---------- */
.custom-header {
  background: #fff;
  width: 100%;
  min-height: auto;
  padding: 0;
  color: #333;
  z-index: 999;
  font-family: 'Poppins', Arial, sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 0.2px solid #fff;
}

/* ---------- HEADER FLEX ---------- */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  min-height: auto;
  padding: 0px 0px;
  gap: 0;
  margin: 0;
}

/* ---------- LOGO STYLES ---------- */
.logo-area {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-left: 0;
}

.site-logo {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1000px) {
  .site-logo {
    display: block;
  width: 310px;
  max-width: 100%;
  height: auto;
  
  }
}
@media (max-width: 700px) {
  .site-logo {
    display: block;
  width: 10px;
  max-width: 100%;
  height: auto;
   
  }

  @media (max-width: 480px) {
  .site-logo {
    width: 280px;
    max-height: 50px;
  }
}
  .logo-area {
    min-width: 0;
  }
}

/* ---------- NAV MENU ---------- */
.header-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
}

.nav-menu {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu li a {
  font-family: inherit;
  font-weight: 400;
  font-size: 0.9rem;
  color: #222;
  text-decoration: none;
  transition: color 0.18s, border-bottom 0.18s;
  padding: 8px 0 4px 0;
  display: inline-block;
  letter-spacing: 0.02em;
}
.nav-menu li a:hover,
.nav-menu li a:focus {
  color: #10d26a;
}

/* ---------- HEADER ACTION BUTTONS ---------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  justify-content: flex-end;
}
.header-action-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px 7px 13px;
  background: #ff3f3f;
  border-radius: 28px;
  color: #fff;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.17s;
  box-shadow: 0 1.5px 8px rgba(0,0,0,0.02);
}
.header-action-link:hover,
.header-action-link:focus {
  background: #e5e5e5;
  color: #10d26a;
  box-shadow: 0 4px 16px -2px rgba(0,123,255,0.06);
}
.header-action-link svg {
  display: block;
}
.action-text {
  display: inline;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ---------- HAMBURGER MENU ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: #333; /* dark gray for visibility */
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Show hamburger, hide nav at tablet/mobile, keep actions */
@media (max-width: 1025px) {
  .nav-menu {
    display: none !important;
  }
  .header-actions {
    display: flex !important;
  }
  .hamburger {
    display: flex !important;
  }
  .header-nav {
    justify-content: flex-end;
  }
}

/* MOBILE HEADER PADDING AND WIDTH */
@media (max-width: 700px) {
  .custom-header,
  .header-top {
    min-height: 56px;
  max-height: 70px;
    padding: 0 5px !important;
  }
  .site-logo {
    width: 90px;
    max-height: 36px;
  }
  .header-actions {
    gap: 8px;
    margin-right: 8px;
  }
}

/* ---------- MOBILE MENU OVERLAY ---------- */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.9);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- MOBILE NAV DRAWER ---------- */
.mobile-nav-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #0d333f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
  z-index: 1002;
  box-shadow: 0 4px 40px -12px rgba(0,0,0,0.09);
  padding-top: 32px;
  box-sizing: border-box;
}
.mobile-nav-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.close-mobile-nav {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1003;
  transition: color 0.2s;
  line-height: 1;
}
.close-mobile-nav:focus,
.close-mobile-nav:hover {
  color: #10d26a;
}

.mobile-logo-area {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.mobile-menu-logo {
  width: 210px;
  max-width: 90vw;
  max-height: 58px;
  height: auto;
}
@media (max-width: 480px) {
  .mobile-menu-logo {
    width: 150px;
    max-height: 38px;
  }
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.mobile-menu-list li a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 700;
  padding: 8px 0;
  letter-spacing: 0.01em;
}
.mobile-menu-list li a:hover,
.mobile-menu-list li a:focus {
  color: #10d26a;
}

@media (max-width: 480px) {
  .mobile-menu-list li a {
    font-size: 1.1rem;
  }
}

/* ---------- BODY PADDING FOR FIXED HEADER ---------- */
.site-main {
  padding-top: 0px;
}
@media (max-width: 700px) {
  .site-main {
    padding-top: 0px;
  }
}








.hero {
  background: #011e44;
  min-height: 70vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

.hero-content {
  flex: 1 1 0;
  max-width: 700px;
  padding-top: 100px;
  text-align: left;
}

.hero h1 {
  color: #f6f6f6;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  margin-top: 0;
  padding-top: 0px;
  text-align: left;
}

.hero-subtitle {
  color: #ff3f3f;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  max-width: 700px;
  text-align: left;
}


.hero-or {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  
  border-radius: 50%;
  
  margin: 0 0.1rem;
  letter-spacing: 0px;
  box-shadow: 0 2px 8px rgba(44,44,44,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

/* Call Button Styling */
.call-btn {
  display: inline-block;
  padding: 1rem 1rem;
  background: #fff;
  color: #091a46;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 2px 16px rgba(44,44,44,0.07);
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  letter-spacing: -1px;
  border: none;
}

.call-btn:hover,
.call-btn:focus {
  background: #e6e6e6;
  color: #091a46;
}

/* Request Button Styling - border only */
.request-btn {
  display: inline-block;
  padding: 1rem 1rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  letter-spacing: -1px;
  border: 2px solid #fff;
  box-sizing: border-box;
}

.request-btn:hover,
.request-btn:focus {
  background: #fff;
  color: #091a46;
}

/* HERO CARD STYLES */
.hero-card {
  flex: 0 0 350px;
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 4px 32px rgba(44,44,44,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  margin-top: 100px;
  color: #232159;
  min-width: 200px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero-card-icon {
  font-size: 1.7rem;
  background: #232159;
  color: #fff;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #232159;
}

.hero-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
}

.checkmark {
  font-size: 1.25rem;
  color: #2ecc40;
  margin-top: 2px;
}

/.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-content {
    margin-left: 0;
    padding-top: 40px;
  }
  .hero-card {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 1.5px 16px -8px rgba(0,0,0,0.09);
  }
  .hero-card-header {
    font-size: 1.1rem;
    gap: 0.5rem;
  }
  .hero-card-title {
    font-size: 1.06rem;
  }
  .hero-card-body ul {
    gap: 0.4rem;
  }
}



@media (max-width: 600px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    width: 100%;
    margin-top: 1.2rem;
  }
  .call-btn,
  .request-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    border-radius: 28px;
    box-sizing: border-box;
  }
  .hero-or {
    display: none;
  }
  .hero-content {
    padding-top: 20px;
  }
 
  .hero h1 {
    font-size: 2rem;
    padding-top: 14px;
  }
  .hero-subtitle {
    font-size: 1rem;
  }

   .hero-card {
    padding: 1rem 0.5rem;
    border-radius: 13px;
    box-shadow: 0 1px 8px -4px rgba(0,0,0,0.08);
    font-size: 0.99rem;
    margin-top: 0.5rem;
  }
  .hero-card-header {
    font-size: 1rem;
    gap: 0.4rem;
  }
  .hero-card-title {
    font-size: 1rem;
  }
  .hero-card-body ul {
    padding-left: 1.1rem;
    gap: 0.3rem;
  }
  .hero-card-body li {
    font-size: 0.97rem;
    gap: 0.2rem;
    padding: 0.4rem 0;
  }
  .hero-card-icon {
    font-size: 1.6rem;
  }
  .checkmark {
    color: #10d26a;
    font-size: 1.2rem;
    margin-right: 0.4em;
    vertical-align: middle;
  }
}




.screwup-request-form {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(44,44,44,0.07);
}
#request-heading {
  font-size: 2rem;
  font-weight: 900;
  margin: 1.5rem 0;
  transition: color 0.3s;
}
.screwup-field {
  margin-bottom: 1.6rem;
  transition: all 0.5s cubic-bezier(.7,.2,.4,1.1);
  overflow: hidden;
  padding: 20px;
}
.screwup-field.completed {
  opacity: 0.6;
  transform: scale(0.98);
  background: #f4f4fa;
  padding: 0.8rem 1.2rem;
  border-radius: 0.7rem;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.6rem;
}
.screwup-field.active {
  opacity: 1;
  background: #eef3ff;
  padding: 1.2rem 1.2rem 1.8rem 1.2rem;
  border-radius: 0.7rem;
  box-shadow: 0 2px 10px rgba(44,44,44,0.04);
  font-size: 1.2rem;
  padding: 1.2rem 3rem 1.8rem 1.2rem; /* top, right, bottom, left */
}


.screwup-field label {
  font-weight: 700;
  display: block;
  margin-bottom: 0.7rem;
}
.screwup-field input,
.screwup-field select,
.screwup-field textarea {
  font-size: 1.2rem;
  padding: 0.7rem;
  border: 1px solid #ddd;
    margin-right: 0.6rem;
  border-radius: 0.5rem;
  width: 100%;
  margin-bottom: 0.7rem;
  background: #fff;
  transition: border 0.2s;
}
.screwup-field input.error,
.screwup-field select.error,
.screwup-field textarea.error {
  border: 2px solid #ff3f3f;
}
.next-btn {
  background: #011e44;
  color: #fff;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.8rem;
  transition: background 0.2s;
}
.next-btn:hover,
.next-btn:focus {
  background: #223b7d;
}
.screwup-answer {
  font-weight: 600;
  color: #011e44;
}
.screwup-success {
  text-align: center;
  padding: 2rem;
  background: #eafae7;
  border-radius: 1rem;
  color: #222;
}










.why-section {
  width: 100%;
  margin-top: 30px;
}

.container {
  width: 80vw;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0px;
  box-sizing: border-box;
  transition: width 0.2s;
}

.why-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.why-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-image {
  flex: 0 0 350px;
  max-width: 400px;
  min-width: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.why-image img {
  max-width: 100%;
  width: 350px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 32px rgba(44,44,44,0.11);
  background: #fff;
  display: block;
}

.why-block h2 {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #222;
  line-height: 1.2;
}

.accent-bar {
  display: inline-block;
  width: 3px;
  height: 50px;
  background: #2ecc40;
  margin-right: 12px;
  border-radius: 2px;
}

.why-block p {
  font-size: 1rem;
  color: #444;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
}

.info-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #222;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.info-link-icon {
  font-size: 1.4rem;
  margin-right: 7px;
  color: #222;
}

.info-link:hover,
.info-link:focus {
  color: #2ecc40;
}

@media (max-width: 900px) {
  .why-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .why-text, .why-image {
    max-width: 100%;
  }
  .why-image {
    justify-content: center;
    margin-top: 1rem;
  }
  .why-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .why-block h2 {
    font-size: 1.4rem;
  }
  .why-block p {
    font-size: 1rem;
  }
}







.how-it-works {
  background: #efefef;
  padding: 40px 0 0 0;
  
}

.how-it-works-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0px;
}


.how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
  margin-left: 20px 0px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 32px;
  margin: 0 0px;
}

.step-card {
  background: #fff;
  border-top: 4px solid  #333;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  box-sizing: border-box;
}

.step-number-row {
  margin-bottom: 16px;
  text-align: left; /* Align contents (number box) to the left */
}

.step-number {
  background:#0f774f ;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin: 0; /* Remove auto/center margin */
}

.step-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color:#0d333f;
}

.step-desc {
  color: #0d333f;
  font-size: 1rem;
}

@media (max-width: 1200px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .steps-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    margin: 0 16px;
  }
  .how-it-works h2 {
    margin-left: 16px;
    font-size: 2rem;
  }
}




.on-your-behalf {
  background:#10d26a;
  padding: 50px 0 50px 0;
}

.on-your-behalf-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 0px;
}

.on-your-behalf-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.on-your-behalf-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.on-your-behalf-desc {
  font-size: 1.2rem;
  color: #222;
  margin-top: 36px;
  margin-left: 0px;
  max-width: 1700px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .on-your-behalf-header,
  .on-your-behalf-desc {
    margin-left: 24px;
  }
  .on-your-behalf-title {
    font-size: 2.3rem;
  }
  .on-your-behalf-desc {
    font-size: 1.2rem;
  }
}





.pet-insurance-section {
  padding: 60px 0;
  background: #fff;
  font-family: 'Poppins', Arial, sans-serif;

}

.pet-insurance-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0px;
}

.pet-insurance-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #181818;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pet-insurance-section p {
  font-size: 1.1rem;
  color: #181818;
  margin-bottom: 20px;
  font-family: 'Poppins', Arial, sans-serif;

}

.pet-insurance-list-wrapper {
  display: flex;
  gap: 48px;
  margin-top: 32px;
  justify-content: flex-start;
}

.pet-insurance-list {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pet-insurance-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pet-insurance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  margin-top: 0.2em;
}

.pet-insurance-item strong {
  font-weight: 700;
  color: #181818;
  font-size: 1rem;
}

.pet-insurance-item a {
  color: #181818;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s;
}

.pet-insurance-item a:hover,
.pet-insurance-item a:focus {
  color: #007bff;
}

.pet-insurance-item > div {
  font-size: 1rem;
  color: #181818;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .pet-insurance-section h2 {
    font-size: 2.3rem;
  }
  .pet-insurance-list-wrapper {
    flex-direction: column;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .pet-insurance-container {
    padding: 0 10px;
  }
  .pet-insurance-section h2 {
    font-size: 1.42rem;
  }
  .pet-insurance-item > div {
    font-size: 1rem;
  }
  .pet-insurance-list {
    gap: 22px;
  }
  .pet-insurance-list-wrapper {
    gap: 18px;
  }
}




.pet-prices-section {
  width: 100vw;
  min-width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #1cdce7;
  padding: 60px 0;
  font-family: 'Poppins', Arial, sans-serif;

}

.pet-prices-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0px;
  display: flex;
  align-items: flex-start;
}

.pet-prices-left,
.pet-prices-right {
  width: 50%;
  min-width: 0;
}

.pet-prices-left {
  padding-right: 32px;
}

.pet-prices-right {
  padding-left: 32px;
}

.pet-prices-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #181818;
}

.pet-prices-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 13px;
  color: #181818;
}

.pet-prices-section p {
  font-size: 1rem;
  color: #181818;
  margin-bottom: 18px;
}

.pet-prices-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 15px 0;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}

.pet-prices-table th,
.pet-prices-table td {
  padding: 18px 18px;
  text-align: left;
  border: 2px solid #1cdce7;
  font-family: 'Poppins', Arial, sans-serif;

}

.pet-prices-table th {
  background:#0da1ce;
  font-weight: 700;
  font-size: 1rem;
  color: #181818;
}

.pet-prices-table tr:nth-child(even) td {
  background: #f2fcf7;
}

.pet-prices-footnote {
  font-size: 0.85rem;
  display: block;
  color: #181818;
  margin-top: 9px;
  opacity: 0.8;
}

.pet-prices-right ul {
  padding-left: 22px;
  margin-top: 8px;
  margin-bottom: 0;
}

.pet-prices-right li {
  font-size: 1rem;
  color: #181818;
  margin-bottom: 14px;
  line-height: 1.55;
}

.pet-prices-right li strong {
  font-weight: 700;
}

.pet-prices-right a {
  color: #181818;
  text-decoration: underline;
  transition: color 0.2s;
  font-weight: 700;
}

.pet-prices-right a:hover,
.pet-prices-right a:focus {
  color: #007bff;
}

@media (max-width: 980px) {
  .pet-prices-section h2 {
    font-size: 2rem;
  }
  .pet-prices-container {
    flex-direction: column;
  }
  .pet-prices-left,
  .pet-prices-right {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .pet-prices-container {
    padding: 0 10px;
    gap: 20px;
  }
  .pet-prices-section h2 {
    font-size: 1.35rem;
  }
  .pet-prices-section h3 {
    font-size: 1.07rem;
  }
  .pet-prices-table th,
  .pet-prices-table td {
    padding: 10px 7px;
    font-size: 0.97rem;
  }
  .pet-prices-right li {
    font-size: 1rem;
  }
}







.faq-section {
  background: #5cb6ec;
  padding: 40px 0 10px 0;
}

.faq-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #161616;
  margin-bottom: 32px;
  
}

.faq-list {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: transparent;
  margin-bottom: 32px;
  border: none;
}

.faq-question {
  width: 96%;
  display: flex;
  justify-content: space-between;
  padding: 10px 10px;
  background: #191919;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0 auto;
  border-radius: 0;
  position: relative;
}

.faq-icon {
  font-size: 2.8rem;
  font-weight: 400;
  pointer-events: none;
}

.faq-answer {

display: none;
background: #fff;
color: #222;
padding: 32px 22px 32px 22px;
font-size: 1.25rem;
font-weight: 400;
border-top: 8px solid #191919;
line-height: 1.6;
display: none;
background: #fff;
color: #222;
width: 96%;
margin: 0 auto;
box-sizing: border-box;
}

.faq-item.open .faq-answer {
  display: block;
  width: 100%;
}

.faq-item.open .faq-question .faq-icon {
  content: "-";
  font-size: 2.8rem;
  transform: rotate(45deg);
  transition: transform 0.2s;
}

@media (max-width: 800px) {
  .faq-title {
    font-size: 2rem;
    margin-left: 8px;
  }
  .faq-question, .faq-answer {
    font-size: 1rem;
    padding: 16px;
    width: 98%;
  }
  .faq-question {
    font-size: 1.25rem;
  }
}