/* SECTION */
.ac-banner {
  background: #ebe0f7; /* same soft lavender */
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.ac-banner .ac-container {
  max-width: 1400px;
  width: 95%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT CONTENT */
.ac-content {
  flex: 1.2;
}

/* BREADCRUMB (optional but styled) */
.ac-breadcrumb {
  font-size: 14px;
  color: #6c7a89;
  margin-bottom: 20px;
}

.ac-sep {
  margin: 0 8px;
}

.ac-active {
  color: #1aa39a;
  font-weight: 500;
}

/* TITLE */
.ac-content h1 {
  font-size: 64px;
  font-weight: 700;
  color: #1aa39a; /* same teal */
  margin-bottom: 20px;
}

/* DESCRIPTION */
.ac-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #6c7a89;
  max-width: 520px;
}

/* RIGHT IMAGE */
.ac-image {
  flex: 1.3;
  display: flex;
  justify-content: flex-end;
}

.ac-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: 0.4s;
}

/* HOVER */
.ac-image img:hover {
  transform: scale(1.03);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .ac-banner .ac-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .ac-image {
    justify-content: center;
  }

  .ac-content h1 {
    font-size: 48px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .ac-banner {
    padding: 60px 15px;
  }

  .ac-content h1 {
    font-size: 36px;
  }

  .ac-content p {
    font-size: 16px;
  }
}


/*finding cancer*/

/* SECTION */
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:"Poppins", sans-serif;
  background:#f3f4f6;
}

/* ================= SECTION ================= */
.ct-section{
  padding:80px 20px;
}

.ct-container{
  max-width:1400px;
  width:95%;
  margin:auto;
  display:flex;
  gap:60px;
}

/* ================= LEFT BOX ================= */
.ct-left{
  flex:1.2;
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.ct-left h2{
  font-size:26px;
  margin-bottom:10px;
}

.ct-left p{
  color:#6b7280;
  margin-bottom:25px;
}

/* ================= DROPDOWN ================= */
.ct-dropdown{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #d1d5db;
  font-size:16px;
  margin-bottom:20px;
  appearance:none;

  background-image:url("data:image/svg+xml;utf8,<svg fill='%236b7280' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat:no-repeat;
  background-position:right 15px center;
}

.ct-dropdown:focus{
  outline:none;
  border-color:#1aa39a;
  box-shadow:0 0 0 3px rgba(26,163,154,0.15);
}

/* BUTTON */
.ct-btn{
  display:block;
  width:100%;
  text-align:center;
  padding:14px;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  font-weight:500;

  background:linear-gradient(90deg,#0ea5a4,#22c55e);
}

/* ================= RIGHT ================= */
.ct-right{
  flex:1;
}

.ct-right h3{
  font-size:24px;
  margin-bottom:20px;
}

/* LIST */
.ct-item{
  background:#fff;
  padding:18px 20px;
  border-radius:14px;
  margin-bottom:15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:0.3s;
}

.ct-item:hover{
  background:#f0fdfa;
  transform:translateX(5px);
}

.ct-item h4{
  color:#1aa39a;
  font-size:16px;
}

.ct-item p{
  font-size:13px;
  color:#6b7280;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .ct-container{
    flex-direction:column;
  }
}

@media(max-width:576px){
  .ct-left{
    padding:25px;
  }

  .ct-left h2{
    font-size:22px;
  }

  .ct-dropdown{
    font-size:14px;
  }
}

/*Resources*/

/* SECTION */
.uc-section {
  padding: 90px 20px;
  background: #f3f4f6;
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.uc-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.uc-header {
  text-align: center;
  margin-bottom: 60px;
}

.uc-tag {
  display: inline-block;
  background: #e6f7f5;
  color: #1aa39a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.uc-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.uc-header p {
  color: #6b7280;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* GRID */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.uc-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;

  border: 1px solid #e5e7eb; /* default soft border */
  transition: all 0.35s ease;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.uc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */
.uc-icon {
  width: 55px;
  height: 55px;
  background: #e6f7f5;   /* light bg */
  color: #1aa39a;        /* icon color */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
/* TEXT */
.uc-card h3 {
  color: #1aa39a;
  margin-bottom: 10px;
  font-size: 15px;
  text-decoration: underline;
}
.uc-card:hover {
  transform: translateY(-6px);

  border-color: #1aa39a;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.08),
}

/* OPTIONAL: icon animation */
.uc-card:hover .uc-icon {
  background: #1aa39a;   /* teal bg */
  color: #fff;           /* white icon */
  transform: scale(1.05);
}
.uc-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .uc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .uc-grid {
    grid-template-columns: 1fr;
  }

  .uc-header h2 {
    font-size: 28px;
  }

  .uc-section {
    padding: 60px 15px;
  }
}

/*faq*/

/* SECTION */
.faq-section {
  padding: 90px 20px;
  background: #f3f4f6;
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.faq-container {
  max-width: 800px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.faq-header p {
  color: #6b7280;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-icon {
  font-size: 18px;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* HOVER */
.faq-item:hover {
  border-color: #1aa39a;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .faq-header h2 {
    font-size: 26px;
  }
}

/* ICON WRAP */
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* SVG */
.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: #64748b;
  stroke-width: 2.5;
  fill: none;
  transition: 0.3s;
}

/* HOVER */
.faq-item:hover .faq-icon {
  background: #e6f7f5;
}

.faq-item:hover .faq-icon svg {
  stroke: #1aa39a;
}

/* ACTIVE (OPEN) */
.faq-item.active .faq-icon {
  background: #1aa39a;
}

.faq-item.active .faq-icon svg {
  stroke: #fff;
  transform: rotate(180deg);
}


/* cta*/

/* SECTION BACKGROUND */
.cta-help {
  padding: 80px 20px;
  background: #f3f4f6;
  font-family: "Poppins", sans-serif;
}

/* CARD */
.cta-container {
  max-width: 1100px;
  margin: auto;
  background: #0ea481;
  border-radius: 30px;
  text-align: center;
  padding: 70px 40px;
  color: #fff;
}

/* TITLE */
.cta-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* TEXT */
.cta-container p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 650px;
  margin: auto;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #e5e7eb;
  color: #1f2937;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #1aa39a;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .cta-container {
    padding: 50px 25px;
  }

  .cta-container h2 {
    font-size: 28px;
  }

  .cta-container p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}