body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    margin: 0;
}
.container {
  max-width: 1000px;
  padding: 0 15px;
  margin: auto;
}
.header_sec {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 17px 0;
}
.header_sec .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_sec .logo {
    width: 150px;
}
.header_sec .logo img {
    width: 100%;
}
.header_sec .right_sec .sign_btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    background: #ecedf1;
    color: #070709;
    font-weight: 700;
    text-decoration: none;
}
.header_sec .right_sec .sign_btn:hover {
    background: #00a53a;
    color: #fff;
}
.header_sec .right_sec .help {
    color: #000000;
    text-decoration: none;
    padding: 0 8px;
    font-size: 18px;
    border-bottom: 3px solid #0bd34f;
    padding-bottom: 6px;
    margin-right: 20px;
}
.header_sec .right_sec .help:hover {
    color: #0bd34f;
    border-bottom: 3px solid #ecedf1;
}

/* Banner Sec */
.banner_sec {
    padding: 50px 0;
    background: url(../images/banner_photo.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.banner_sec .banner_title {
    font-size: 70px;
    margin: 10px 0;
    font-weight: 900;
    line-height: 1;
}
.banner_sec .banner_title span{
  color:#00a53a;
}
.banner_sec small {
    color: #00a53a;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 22px;
}
.banner_sec p {
    font-size: 24px;
    width: 42%;
    color: #767474;
    display: inline-block;
    margin: 10px 0;
    line-height: 1.5;
}
.banner_sec .search {
    margin-top: 0;
    background: #fff;
    border-radius: 50px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.banner_sec .search .search_icon {
    width: 20px;
    margin-right: 10px;
}
.banner_sec .search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 20px;
}
/* Banner Sec */

/* Help Sec */
.help_sec {
  background: #edfaf0;
  border: 1px solid #e2f5e9;
  border-radius: 20px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

/* Left Content */
.help_sec .help-content {
    display:flex;
    align-items:center;
    gap:16px;
    flex:1;
}

.help_sec .help-content .icon-circle{
  width:58px;
  height:58px;
  min-width:58px;
  background:#00C244;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.help_sec .help-content .icon-circle svg{
  width:30px;
  height:30px;
}

.help_sec .help-content .help-title{
  font-size:30px;
  font-weight:700;
  color:#111111;
  line-height:1.2;
}

/* Button */
.help_sec .login-btn{
  background:#00C244;
  color:#fff;
  text-decoration:none;
  font-size:22px;
  font-weight:700;
  padding:18px 48px;
  border-radius:999px;
  transition:.3s;
  white-space:nowrap;
}

.help_sec .login-btn:hover{
  background:#00ad3d;
}
/* Help Sec */

/* Topics Sec */
.topics_sec .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.topics_sec .section-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #000;
  margin: 0;
}
.topics_sec .view-all{
  color:#00D54B;
  text-decoration:none;
  font-size:22px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:8px;
}
.topics_sec .view-all:hover{
  color:#00b83f;
}
/* Grid */

.topics_sec .topic-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
/* Card */
.topics_sec .topic-card {
  border:1px solid #EAEAEA;
  border-radius:18px;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:.25s ease;
  background:#fff;
  cursor:pointer;
}
.topics_sec .topic-card:hover{
  border-color:#00D54B;
  box-shadow:0 8px 20px rgba(0,213,75,.08);
  transform:translateY(-2px);
}
.topics_sec .topic-card .left {
  display:flex;
  align-items:center;
  gap:18px;
}
.topics_sec .topic-card .left .icon{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00D54B;
  flex-shrink:0;
}
.topics_sec .topic-card .left .icon svg {
  width: 54px;
  height: auto;
  stroke: #00D54B;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.topics_sec .topic-card .topic-title{
  font-size:22px;
  font-weight:600;
  line-height:1.35;
  color:#111827;
}
.topics_sec .topic-card .arrow svg{
  width:24px;
  height:24px;
  stroke:#1F2937;
  stroke-width:2.5;
}
/* Topics Sec */

/* Browse Topics Sec */
.browse_topics_sec {
    margin-top: 20px;
}
.browse_topics_sec .section-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
    margin: 0 0 12px;
}

/* Accordion Box */
.browse_topics_sec .accordion {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  overflow: hidden;
}

/* Item */

.browse_topics_sec .acc-item {
  border-bottom: 1px solid #efefef;
}
.browse_topics_sec .acc-item:last-child {
  border-bottom: none;
}
.browse_topics_sec .acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: 0.25s;
}
.browse_topics_sec .acc-header:hover {
  background: #f8fff9;
}

/* Left */
.browse_topics_sec .acc-header .left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.browse_topics_sec .acc-header .icon {
  width: 34px;
  height: 34px;
  color: #00d54b;
  flex-shrink: 0;
}
.browse_topics_sec .acc-header .icon svg {
  width: 100%;
  height: 100%;
  stroke: #00d54b;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.browse_topics_sec .acc-header .left .acc-title {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
}
/* Arrow */

.browse_topics_sec .arrow {
  transition: 0.3s;
}
.browse_topics_sec .arrow svg {
  width: 24px;
  height: 24px;
  stroke: #111827;
  stroke-width: 2.5;
}
.browse_topics_sec .acc-item.active .arrow {
  transform: rotate(90deg);
}
/* Body */

.browse_topics_sec .acc-body {
  display: none;
  padding: 0 24px 24px 76px;
}
.browse_topics_sec .acc-body p {
  color: #5b6470;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.browse_topics_sec .acc-body a {
  color: #00d54b;
  text-decoration: none;
  font-weight: 600;
}
.browse_topics_sec .acc-body a:hover {
  text-decoration: underline;
}
/* Browse Topics Sec */

/*  */
.contact_sec {
    margin: 20px 0;
}
.contact_sec .section-title {
  font-size: 30px;
  font-weight: 800;
  color: #000;
  margin: 0 0 12px;
}

/* Contact Grid */
.contact_sec .contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

/* Card */
.contact_sec .contact-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:22px;
  padding:28px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:.3s ease;
  cursor:pointer;
}
.contact_sec .contact-card:hover{
  border-color:#00D54B;
  box-shadow:0 8px 24px rgba(0,213,75,.08);
  transform:translateY(-2px);
}
.contact_sec .contact-left{
  display:flex;
  align-items:center;
  gap:20px;
}

/* Icon */
.contact_sec .icon{
  width:60px;
  height:60px;
  flex-shrink:0;
}
.contact_sec .icon svg {
    width: 100%;
    height: 100%;
    color: #00D54B;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Text */
.contact_sec .contact-title{
  font-size:20px;
  font-weight:700;
  color:#111827;
  margin-bottom:6px;
}
.contact_sec .contact-desc{
  font-size:17px;
  color:#6B7280;
  line-height:1.5;
}

/* Arrow */
.contact_sec .arrow{
  color:#111827;
}
.contact_sec .arrow svg{
  width:26px;
  height:26px;
  stroke:#111827;
  stroke-width:2.5;
  fill:none;
}
/*  */

/* Footer Sec */
.footer_sec{
  background:#ffffff;
  border-top:1px solid #e8e8e8;
  padding:28px 0 18px;
}
.footer_sec .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}
.footer_sec .footer-top .logo {
    width: 164px;
}

.footer_sec .footer-top .logo img {
    width: 100%;
}

/* Top Row */

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
    padding-bottom:22px;
    border-bottom:1px solid #ececec;
}

/* Logo */



/* Menu */

.footer_sec .footer-menu{
    display:flex;
    gap:32px;
    flex-wrap:wrap;
}

.footer_sec .footer-menu a{
    text-decoration:none;
    color:#555;
    font-size:18px;
    font-weight:500;
    transition:.25s;
}

.footer_sec .footer-menu a:hover{
    color:#00D54B;
}

/* Social Icons */

.footer_sec .footer-social{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer_sec .social-btn {
    width: 30px;
    /* height: 38px; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    transition: .25s;
}
.footer_sec .social-btn:hover svg {
    color: #00d54b;
}
.footer_sec .social-btn svg {
    width: 100%;
    height: auto;
    color: #000;
}
.footer_sec .social-btn.youtube svg{
    fill:#000;
    stroke:none;
}

.footer_sec .social-btn.facebook svg{
    fill:#000;
    stroke:none;
}

.footer_sec .social-btn:hover{
    transform:scale(1.1);
}

/* Bottom Row */

.footer_sec .footer-bottom{
    margin-top:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.footer_sec .footer-bottom p{
    color:#6B7280;
    font-size:16px;
    line-height:1.6;
}

/* Footer Sec */



@media (max-width: 1900px) {
  .banner_sec .search {
    width: 88%;
  }
}
@media (max-width: 1800px) {
  .banner_sec .search {
    width: 86%;
  }
}
@media (max-width: 1400px) {
  .banner_sec {
    padding: 27px 0;
  }
  .banner_sec .search {
    width: 76%;
  }
  .help_sec .help-content .help-title {
    font-size: 26px;
  }
  .help_sec .login-btn {
    font-size: 22px;
    padding: 14px 40px;
  }
  .footer_sec .container {
    max-width: 1100px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 900px;
  }
  .banner_sec {
   background-size: cover;
  }
  .banner_sec .banner_title {
    font-size: 54px;
    margin: 10px 0;
  }
  .banner_sec p {
    font-size: 22px;
    width: 42%;
    margin: 10px 0;
  }

}
@media (max-width: 991px) {
  .banner_sec {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .banner_sec .banner_title {
    font-size: 40px;
    margin: 10px 0;
  }
  .banner_sec p {
    font-size: 22px;
    width: 46%;
  }
  .banner_sec .search {
    width: 60%;
    margin: auto;
    padding: 15px 20px;
  }
  .banner_sec .search input {
    font-size: 18px;
  }
  .help_sec .help-content .help-title {
    font-size: 24px;
  }
  .help_sec .help-content .icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .help_sec .login-btn {
    font-size: 20px;
    padding: 11px 30px;
  }
  .topics_sec .section-header h2 {
    font-size: 28px;
  }
  .topics_sec .topic-grid {
    grid-template-columns: repeat(1,1fr);
    gap: 14px;
  }
  .topics_sec .topic-card {
    padding: 20px 18px;
  }
  .topics_sec .topic-card .left .icon {
    width: 30px;
    height: 30px;
  }
  .browse_topics_sec .section-title {
    font-size: 28px;
  }
  .browse_topics_sec .acc-header .left .acc-title {
    font-size: 22px;
  }
  .contact_sec .section-title {
    font-size: 28px;
  }
  .contact_sec .icon {
    width: 40px;
    height: 40px;
  }
  .contact_sec .contact-card {
    border-radius: 12px;
    padding: 22px 15px;
  }
  .contact_sec .contact-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .contact_sec .contact-left {
    gap: 10px;
  }

  /* Footer Sec */
  .footer_sec .footer-top .logo {
    width: 144px;
  }
  .footer_sec .footer-menu {
    gap: 14px;
  }
  .footer_sec .social-btn {
    width: 25px;
  }
  .footer_sec .footer-social {
    gap: 14px;
  }
   /* Footer Sec */
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
  .banner_sec {
    background-size: cover;
    background-position: 70% center;
    text-align: left;
  }
  .banner_sec small {
    font-size: 20px;
  }
  .banner_sec .banner_title {
    font-size: 36px;
    margin: 10px 0;
  }
  .banner_sec p {
    font-size: 18px;
    width: 70%;
  }
  .banner_sec .search {
    width: auto;
    margin: auto;
    padding: 15px 20px;
  }

  .help_sec .help-content .help-title {
    font-size: 20px;
  }
  .topics_sec .section-header h2 {
    font-size: 24px;
  }
  .topics_sec .view-all {
    font-size: 20px;
  }
  .topics_sec .topic-card {
    padding: 16px 8px;
    border-radius: 12px;
  }
  .topics_sec .topic-card .topic-title {
    font-size: 18px;
  }
  .browse_topics_sec .section-title {
    font-size: 24px;
  }
  .browse_topics_sec .acc-header .left .acc-title {
    font-size: 18px;
  }
  .browse_topics_sec .acc-body {
    padding: 12px 20px;
  }
  .contact_sec .section-title {
    font-size: 24px;
  }
  .contact_sec .contact-grid {
    grid-template-columns: repeat(1,1fr);
    gap: 12px;
  }
  .contact_sec .icon {
    width: 34px;
    height: 30px;
  }

  /* Footer Sec */
  .footer-top {
    gap: 14px;
    justify-content: center;
  }
  .footer_sec .footer-bottom {
    margin-top: 8px;
    gap: 4px;
  }
  .footer_sec .footer-bottom p {
    font-size: 16px;
    line-height: 1.6;
    margin: 4px 0;
    text-align: center;
    display: block;
    width: 100%;
  }
  /* Footer Sec */
  
}

@media (max-width: 767px) {

  .header_sec .logo {
    width: 120px;
  }
  .header_sec .right_sec .help {
      padding: 0 8px;
      font-size: 15px;
      margin-right: 10px;
  }
  .header_sec .right_sec .sign_btn {
    padding: 8px 15px;
    font-size: 15px;
  }

  .banner_sec {
    background-size: cover;
    background-position: 57% center;
  }
  .banner_sec p {
    font-size: 18px;
    width: 90%;
  }
  .banner_sec .search .search_icon {
    width: 16px;
    margin-right: 6px;
  }
  .banner_sec .search input {
    font-size: 16px;
  }
  .help_sec {
    flex-direction: column;
  }
  .help_sec .help-content {
    display: flex;
    gap: 3px;
    flex-direction: column;
  }
  .help_sec .help-content .help-title {
    font-size: 20px;
    text-align: center;
    margin: 12px 0;
  }
  .topics_sec {
    margin-top: 20px;
  }
  .topics_sec .section-header h2 {
    font-size: 22px;
  }
  .topics_sec .view-all {
    font-size: 18px;
  }
  .topics_sec .topic-card .topic-title {
    font-size: 16px;
  }
  .topics_sec .view-all {
    font-size: 15px;
    gap: 2px;
  }
  .browse_topics_sec .section-title {
    font-size: 22px;
  }
  .browse_topics_sec .acc-header {
    padding: 16px 10px;
  }
  .browse_topics_sec .acc-header .icon {
    width: 28px;
    height: 28px;
  }
  .browse_topics_sec .acc-header .left {
    gap: 7px;
  }
  .browse_topics_sec .acc-header .left .acc-title {
    font-size: 16px;
  }
  .browse_topics_sec .acc-body p {
    font-size: 14px;
    margin-top: 0;
  }
  
  .browse_topics_sec .acc-body p {
    font-size: 14px;
  }
  .contact_sec .contact-title {
    font-size: 16px;
  }
  .contact_sec .contact-desc {
    font-size: 14px;
  }
  .footer_sec .footer-menu a {
    font-size: 16px;
  }
  .footer_sec .social-btn {
    width: 20px;
  }
}
