:root {
  --green:      #416844;
  --green-dark: #2d4a30;
  --black:      #000000;
  --white:      #ffffff;
  --grey-light: #e2e2de;
  --grey-bg:    #f9f9f9;
  --orange:     #f38215;
  --text:       #333333;
  --muted:      #666666;
  --dark-bg:    #333333;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

.green-bg { background-color: var(--green); color: var(--white); }
.grey-bg  { background-color: var(--grey-light); color: var(--text); }

/* BUTTONS */
.et_pb_button {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.et_pb_button:hover {
  background: var(--white);
  color: var(--green);
}

.green-outline-btn {
  border-color: var(--green);
  color: var(--green);
}
.green-outline-btn:hover {
  background: var(--green);
  color: var(--white);
}

.green-btn {
  border-color: var(--green);
  color: var(--green);
}
.green-btn:hover {
  background: var(--green);
  color: var(--white);
}

.big-button.bigorange {
  display: inline-block;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
.big-button.bigorange:hover { background: #d4700f; }

/* HEADER */
#main-header {
  background-color: var(--green);
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

#logo { height: 60px; width: auto; }
#et-top-navigation { display: flex; align-items: center; }

#site-nav ul {
  display: flex;
  align-items: center;
}

#site-nav ul li a {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 15px;
  transition: opacity 0.2s;
}
#site-nav ul li a:hover,
#site-nav ul li.current a { opacity: 0.75; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
}

#page-container { padding-top: 80px; }

/* HERO SLIDER */
.et_pb_slider {
  position: relative;
  background: var(--green);
  overflow: hidden;
}

.et_pb_slides {
  position: relative;
  height: 420px;
}

.et_pb_slide {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  background-size: cover;
  background-position: center;
}
.et_pb_slide.et-pb-active-slide { display: flex; }

/* Slide background images */
#slider-track .et_pb_slide:nth-child(1) { background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/images/slider5.jpg'); }
#slider-track .et_pb_slide:nth-child(2) { background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/images/banner-dental.jpg'); }
#slider-track .et_pb_slide:nth-child(3) { background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/images/slider9.jpg'); }
#slider-track .et_pb_slide:nth-child(4) { background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/images/disability-insurance-banner.png'); }
#slider-track .et_pb_slide:nth-child(5) { background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/images/portland-banner-7.jpg'); }
#slider-track .et_pb_slide:nth-child(6) { background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/images/Supervisa-web.jpg'); }

.et_pb_container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
}

.et_pb_slide_description { text-align: center; color: var(--white); }

.et_pb_slide_title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.et_pb_slide_content {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.et_pb_more_button { margin-top: 22px; }

.et-pb-arrow-prev,
.et-pb-arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  background: rgba(0,0,0,0.25);
  padding: 12px 18px;
  z-index: 10;
  line-height: 1;
  transition: background 0.2s;
}
.et-pb-arrow-prev { left: 0; }
.et-pb-arrow-next { right: 0; }
.et-pb-arrow-prev:hover,
.et-pb-arrow-next:hover { background: rgba(0,0,0,0.55); }

.et-pb-controllers {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.et-pb-controllers a {
  width: 28px;
  height: 28px;
  line-height: 24px;
  text-align: center;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.et-pb-controllers a.et-pb-active-control {
  background: var(--white);
  color: var(--green);
}

/* INSURANCES SECTION */
.law2-section { padding: 54px 0; }

.section-heading-green {
  text-align: center;
  color: var(--green);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.insurance-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.insurance-card-col { text-align: center; }
.insurance-card-col img { width: 100%; margin-bottom: 14px; }
.card-btn-wrap { text-align: center; margin-top: 10px; }

/* COMPARE RATES BAND */
.compare-band { padding: 48px 0; }
.compare-band-inner { text-align: center; }
.compare-band h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}

/* ICON GRID */
.icon-grid-section { background: var(--grey-bg); padding: 54px 0; }

.banner-logo-wrap { text-align: center; margin-bottom: 32px; }
.banner-logo-wrap img { max-width: 300px; margin: 0 auto; }

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.icon-col { display: flex; flex-direction: column; gap: 24px; }
.icon-item { text-align: center; }
.icon-item p {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text);
}
.icon-item img { display: inline-block; }

.inquiry-band {
  text-align: center;
  padding: 32px 20px;
  margin-top: 10px;
}
.inquiry-band h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

/* OUR BELIEF / OUR TEAM */
.belief-section { padding: 0; }
.belief-cols { display: grid; grid-template-columns: 1fr 1fr; }

.belief-left,
.belief-right { padding: 56px 48px; }

.belief-left h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.belief-left p { font-size: 18px; color: var(--white); line-height: 1.7; }

.belief-right h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.belief-right p { font-size: 17px; color: var(--text); line-height: 1.7; }

/* PARTNERS ACCORDION */
.partners-section { background: #fff; padding: 40px 0; }

.accordion-header {
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  padding: 14px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-body { padding: 20px 0; }
.accordion-body.closed { display: none; }

.partners-logos { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.partner-logo { height: 50px; width: auto; object-fit: contain; display: inline-block; }

/* WHY ACT / TESTIMONIALS */
.why-section { background: var(--dark-bg); padding: 54px 0; }
.why-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.why-left h2,
.why-right h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.why-left p { color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 10px; }

.contentbullets { padding-left: 20px; margin: 10px 0; list-style: disc; }
.contentbullets li { color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 8px; }

.attribution { text-align: right; color: rgba(255,255,255,0.7) !important; font-style: italic; }

.quote-marks { width: 60px; margin-bottom: 12px; }

.why-right ul { list-style: disc; padding-left: 18px; }
.why-right ul li { margin-bottom: 16px; }
.why-right ul li p { font-size: 16px; color: rgba(255,255,255,0.88); line-height: 1.6; }

/* PASSION SECTION */
.passion-section { background: #fff; padding: 54px 0; }

.passion-heading {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 30px;
}

.passion-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.passion-text p { color: var(--muted); line-height: 1.7; margin-bottom: 14px; }

/* CONTACT BAND (home) */
.contact-band-section { padding: 0; }
.contact-cols { display: grid; grid-template-columns: 1fr 1fr; }

.contact-info { padding: 56px 48px; }
.contact-info p { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 8px; }
.contact-info h2 {
  color: var(--white);
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 20px 0 6px;
}

.contact-form-wrap { background: #fff; padding: 56px 48px; }

.form-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.contact-form label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}

.contact-form textarea { resize: vertical; }

.et_pb_contact_submit {
  border-color: var(--green) !important;
  color: var(--green) !important;
  background: transparent;
  cursor: pointer;
  margin-top: 6px;
}
.et_pb_contact_submit:hover {
  background: var(--green) !important;
  color: var(--white) !important;
}

/* INNER PAGE */
.section { padding: 40px 0; }

.page-hero { padding: 64px 0 44px; text-align: center; }
.page-hero h1 {
  font-size: 34px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
}
.page-subheading { font-size: 18px; color: rgba(255,255,255,0.85); margin-top: 10px; }
.page-copy { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 760px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--grey-bg);
  border: 1px solid #e0e0e0;
  padding: 24px;
  border-radius: 4px;
}
.card h3 { font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.card p  { font-size: 15px; color: var(--muted); line-height: 1.6; }

.thankyou-box { text-align: center; padding: 60px 20px; }
.thankyou-box h2 { font-size: 30px; color: var(--green); margin-bottom: 14px; }
.thankyou-box p  { font-size: 18px; color: var(--muted); margin-bottom: 24px; }

/* FOOTER */
#main-footer { background-color: var(--black); }

#et-footer-nav { padding: 20px 0; border-bottom: 1px solid #2a2a2a; }

.bottom-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.bottom-nav li a {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  transition: opacity 0.2s;
}
.bottom-nav li a:hover { opacity: 0.65; }

#footer-bottom { padding: 18px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.et-social-icons { display: flex; gap: 16px; }
.et-social-icons li a { color: var(--white); font-size: 13px; transition: opacity 0.2s; }
.et-social-icons li a:hover { opacity: 0.65; }

#footer-info { font-size: 13px; color: var(--white); }
.dexdam-link { color: var(--orange) !important; }

/* RESPONSIVE — TABLET <=980px */
@media (max-width: 980px) {
  .insurance-card-grid { grid-template-columns: 1fr 1fr; }
  .icon-grid            { grid-template-columns: repeat(2, 1fr); }
  .card-grid            { grid-template-columns: 1fr 1fr; }
  .passion-cols         { grid-template-columns: 1fr; }
}

/* RESPONSIVE — MOBILE <=767px */
@media (max-width: 767px) {
  .mobile-toggle { display: block; }

  #site-nav {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--green);
    z-index: 200;
  }
  #site-nav.open { display: block; }

  #site-nav ul { flex-direction: column; padding: 8px 0; }
  #site-nav ul li a { padding: 12px 20px; display: block; }

  .et_pb_slides        { height: 360px; }
  .et_pb_slide_title   { font-size: 28px; }

  .insurance-card-grid,
  .belief-cols,
  .why-cols,
  .contact-cols         { grid-template-columns: 1fr; }

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

  .contact-form .form-row { grid-template-columns: 1fr; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .belief-left,
  .belief-right,
  .contact-info,
  .contact-form-wrap    { padding: 36px 24px; }
}
