 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f4f4f4;
    }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999; 
  background: rgba(255, 255, 255, 0.7); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  padding: 20px 40px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}


.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


.header-left img {
  height: 80px;
  max-width: 100%;
}


.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}


.icon-circle {
  background-color: #0f487c;
  color: white;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
}

/* Text beside icon */
.header-text {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.header-text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.header-text .phone {
  font-size: 22px;
  font-weight: bold;
  margin-top: 5px;
  color: #222;
}

.header-text .tty {
  font-size: 15px;
  margin-top: 2px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-right {
    margin-top: 20px;
  }
}

/*hero section*/
    .hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero img.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.hero-content {
  max-width: 700px; 
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  color: #0f487c;
  margin-bottom: 35px;
 
}

.hero p {
  font-size: 22px;
  color: #2b2b2b;
  margin-bottom: 35px;
  margin-top: 45px;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px; 
  background-color: #0f487c;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px; 
  font-weight: bold;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero .btn i {
  font-size: 16px; /
}

.hero .btn:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 14px rgba(0, 86, 179, 0.4);
}
/* Responsive Styles  */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }

  .hero .btn {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 15px;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero .btn {
    font-size: 15px;
    padding: 10px 22px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero .btn {
    font-size: 14px;
    padding: 10px 20px;
    flex-direction: column;
    gap: 5px;
  }

  .hero .btn i {
    font-size: 14px;
  }
}


/*info section*/
   section.medicare-info {
      padding: 60px 40px;
      max-width: 1200px;
      margin: auto;
    }

    .medicare-info h2 {
        color: #0f487c;
      font-size: 32px;
      text-align: center;
      font-weight: bold;
      margin-bottom: 20px;
     line-height: 1.4;
    }

    .medicare-info h3 {
        color: #0f487c;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .highlight {
      font-weight: 600;
      font-size: 18px;
      margin: 30px 0 10px;
    }

    .medicare-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
      justify-content: center;
    }

    .card {
      flex: 1 1 400px;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      background-color: #f9f9f9;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .card i {
      font-size: 50px;
      margin-bottom: 15px;
      color: #0f487c;
    }

    .card p {
      font-size: 16px;
      line-height: 1.6;
    }

    ul {
      margin-top: 15px;
      padding-left: 20px;
      font-size: 16px;
    }

    ul li {
      margin-bottom: 10px;
      text-align: left;
    }
    @media (max-width: 992px) {
  .medicare-info h2 {
    font-size: 28px;
  }

  .medicare-info h3 {
    font-size: 18px;
  }

  .highlight {
    font-size: 16px;
  }

  .card p,
  ul {
    font-size: 15px;
  }

  .card i {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  section.medicare-info {
    padding: 40px 20px;
  }

  .medicare-cards {
    gap: 20px;
  }

  .card {
    flex: 1 1 100%;
    padding: 18px;
  }

  .card p {
    font-size: 15px;
  }

  .card i {
    font-size: 36px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .medicare-info h2 {
    font-size: 24px;
  }

  .highlight {
    font-size: 15px;
  }

  .medicare-info h3 {
    font-size: 16px;
  }

  .card p,
  ul {
    font-size: 14px;
  }

  .card {
    padding: 15px;
  }

  ul {
    padding-left: 16px;
  }

  .card i {
    font-size: 32px;
  }
}

/*banner*/
       section.banner-section {
      width: 100%;
      position: relative;
      color: #fff;
    }

    .overlay {
      background-color: rgba(74, 74, 74, 0.7); 
      padding: 40px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .banner-left {
      display: flex;
      align-items: center;
      gap: 25px;
      flex: 1 1 300px;
    }

    .icon-circle {
      background-color: #0f487c;
      color: white;
      width: 65px;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 28px;
    }

    .banner-text {
      display: flex;
      flex-direction: column;
      padding-left: 15px; 
    }

    .banner-text h3 {
      margin: 0;
      font-size: 24px;
      font-weight: bold;
    }

    .banner-text .phone {
      font-size: 24px;
      font-weight: bold;
      margin-top: 8px;
    }

    .banner-text .tty {
      font-size: 16px;
      margin-top: 3px;
      color: #ffffff;
    }

    .banner-right {
      text-align: right;
      flex: 1 1 200px;
      padding-right: 15px; 
      margin-top: 10px;
    }

    .banner-right span {
      display: block;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 5px;
      color: #ffffff;
    }

    @media (max-width: 992px) {
  .overlay {
    padding: 30px 40px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .banner-left,
  .banner-right {
    justify-content: center;
    text-align: center;
    flex: 1 1 100%;
    padding: 0;
    margin: 0;
  }

  .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .banner-text h3,
  .banner-text .phone,
  .banner-right span {
    font-size: 20px;
  }

  .banner-text .tty {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .overlay {
    padding: 25px 20px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .banner-text {
    padding-left: 0;
  }

  .banner-text h3,
  .banner-text .phone,
  .banner-right span {
    font-size: 18px;
  }

  .banner-text .tty {
    font-size: 13px;
  }
}


   

/*disclaimer-section*/

    section.disclaimer-section {
      padding: 40px 60px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .disclaimer-section h4 {
        color: #0f487c;
      margin-top: 20px;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: bold;
    }

    .disclaimer-section p {
      margin-bottom: 15px;
    }

    .divider {
      border: none;
      border-top: 1px solid #0f487c;
      margin: 30px 60px;
    }

    
/* Responsive Styles */
@media (max-width: 768px) {
  section.disclaimer-section {
    padding: 30px 20px;
  }

  .disclaimer-section h4 {
    font-size: 13px;
  }

  .divider {
    margin: 20px 20px;
  }
}

@media (max-width: 480px) {
  section.disclaimer-section {
    padding: 20px 15px;
  }

  .disclaimer-section h4 {
    font-size: 12px;
  }

  .divider {
    margin: 15px 15px;
  }
}
 /*footer-section*/

    .footer-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background-color: #f9f9f9;
      font-size: 13px;
      color: #0f487c;
    }

    .footer-links a {
      text-decoration: none;
      color: #0f487c;
      margin: 0 5px;
    }

    .footer-links span {
      color: #0f487c;
      margin: 0 5px;
    }
    /* Responsive Design */
@media (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 20px;
  }

  .footer-links {
    margin-top: 10px;
  }
}

/*logo section*/
   .logo-marquee {
  background-color: #7f9fbe;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 20s linear infinite;
  gap: 150px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.logo-item img {
  height: 60px; 
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-track {
    gap: 50px;
  }

  .logo-item img {
    height: 45px; 
  }
}



/*form page */
    .form-section {
        padding: 40px 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      align-items: flex-start;
    }

    .form-container {
      flex: 1 1 450px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .input-group {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .input-row {
      display: flex;
      gap: 15px;
    }

    .input-row .input-group {
      flex: 1;
    }

    label {
      font-size: 14px;
      margin-bottom: 6px;
      color: #333;
      font-weight: 500;
    }

    input[type="text"],
    input[type="email"] {
      padding: 12px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin-bottom: 5px;
    }

    .checkbox {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 12px;
      line-height: 1.5;
    }

    .checkbox input {
      margin-top: 4px;
    }

    .submit-btn {
        width:100%;
      background-color: #0f487c;
      color: #fff;
      border: none;
      padding: 14px;
      font-size: 16px;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
      background-color: #0056b3;
    }

    .content-container {
      flex: 1 1 500px;
    }

    .content-container h2 {
      font-size: 36px;
      margin-bottom: 15px;
    }

    .content-container p {
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .location {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .location i {
      font-size: 22px;
      color: #0f487c;
    }

    .address {
      font-size: 15px;
      color: #333;
      line-height: 1.6;
    }

    .map-img {
      width: 100%;
     
      border: 1px solid #ccc;
      margin-top: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      border-radius: 4px;
    }

    .map-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /*responsive*/
    @media (max-width: 768px) {
  .form-section {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  .form-container,
  .content-container {
    flex: 1 1 100%;
  }

  .content-container h2 {
    font-size: 28px;
    text-align: center;
  }

  .content-container p {
    font-size: 15px;
    text-align: center;
  }

  .location {
    justify-content: center;
  }

  .address {
    text-align: center;
  }

  .input-row {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }
}



/*privacy*/
 .privacy-container {
 padding: 40px 60px;
      max-width: 1200px;
      margin: 0 auto;
      font-size: 16px;
     
    
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
      color:#0f487c;
    }

    h2 {
      margin-top: 30px;
      color: #0f487c;
    }
    h3 {
      margin-top: 30px;
      color: #0f487c;
    }

    p {
      margin: 10px 0;
    }

    ul {
      padding-left: 20px;
      margin: 10px 0;
    }

    ul li {
      margin-bottom: 8px;
      list-style-type: disc;
    }

    @media (max-width: 600px) {
      .privacy-container {
        padding: 20px;
      }
    }



    
/*terms*/
 .terms-container {
 padding: 40px 60px;
      max-width: 1200px;
      margin: 0 auto;
      font-size: 16px;
     
    
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
      color:#0f487c;
    }

    h2 {
      margin-top: 30px;
      color: #0f487c;
    }
    h3 {
      margin-top: 30px;
      color: #0f487c;
    }

    p {
      margin: 10px 0;
    }

    ul {
      padding-left: 20px;
      margin: 10px 0;
    }

    ul li {
      margin-bottom: 8px;
      list-style-type: disc;
    }

    @media (max-width: 600px) {
      .privacy-container {
        padding: 20px;
      }
    }

            
/*DNC*/
 .DNC-container {
 padding: 40px 60px;
      max-width: 1200px;
      margin: 0 auto;
      font-size: 16px;
     
    
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
      color:#0f487c;
    }

    h2 {
      margin-top: 30px;
      color: #0f487c;
    }
    h3 {
      margin-top: 30px;
      color: #0f487c;
    }

    p {
      margin: 10px 0;
    }

    ul {
      padding-left: 20px;
      margin: 10px 0;
    }

    ul li {
      margin-bottom: 8px;
      list-style-type: disc;
    }

    @media (max-width: 600px) {
      .DNC-container {
        padding: 20px;
      }
    }


    /*dont sell my personal info*/
 .Sell-container {
 padding: 40px 60px;
      max-width: 1200px;
      margin: 0 auto;
      font-size: 16px;
     
    
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
      color:#0f487c;
    }

    h2 {
      margin-top: 30px;
      color: #0f487c;
    }
    h3 {
      margin-top: 30px;
      color: #0f487c;
    }

    p {
      margin: 10px 0;
    }

    ul {
      padding-left: 20px;
      margin: 10px 0;
    }

    ul li {
      margin-bottom: 8px;
      list-style-type: disc;
    }

    @media (max-width: 600px) {
      .DNC-container {
        padding: 20px;
      }
    }