



/* ===== RESET ===== */
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family: "Segoe UI", system-ui, sans-serif;
    }




    .hero-banner{
      width: 100%;
      height: 50vh;
      background-image: url("../images/banner.png") ;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;


      position: relative;
      min-height: 50vh;
    }


    /* ================= HERO BANNER – 100% RESPONSIVE ONLY ================= */

/* Ultra large screens */
@media (min-width: 1400px) {
  .hero-banner {
    min-height: 60vh;
    height: auto;
    background-size: contain;
  }
}

/* Large desktops */
@media (max-width: 1399px) {
  .hero-banner {
    min-height: 55vh;
    height: auto;
  }
}

/* Laptops */
@media (max-width: 1200px) {
  .hero-banner {
    min-height: 50vh;
    height: auto;
  }
}

/* Tablets (landscape) */
@media (max-width: 992px) {
  .hero-banner {
    min-height: 42vh;
    background-size: contain;
  }
}

/* Tablets & large mobiles */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 36vh;
    background-size: contain;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  .hero-banner {
    min-height: 30vh;
    background-size: contain;
  }
}

/* Small & extra small mobiles */
@media (max-width: 400px) {
  .hero-banner {
    min-height: 26vh;
  }
}

/* Very small screens */
@media (max-width: 320px) {
  .hero-banner {
    min-height: 22vh;
  }
}




/* ================= HERO SECTION ================= */
/* .medical-hero {
  width: 100%;
  min-height: 70vh;
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216")
    center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 40px;
  color: #f1f1f1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 14px 36px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ffffff;
  color: #000000;
}



@media (min-width: 1400px){
  .medical-hero{
    min-height:80vh;
  }

  .hero-content{
    max-width:1100px;
  }
}

@media (max-width: 1200px){
  .hero-content h1{
    font-size:clamp(30px, 4.5vw, 56px);
  }

  .hero-content p{
    font-size:18px;
  }
}

@media (max-width: 992px){
  .medical-hero{
    min-height:65vh;
    padding:0 6%;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content p{
    font-size:17px;
    margin-bottom:32px;
  }
}

@media (max-width: 768px){
  .medical-hero{
    min-height:auto;
    padding:80px 6%;
  }

  .hero-content h1{
    font-size:36px;
  }

  .hero-content p{
    font-size:16px;
  }

  .hero-buttons{
    gap:16px;
  }

  .btn-outline{
    width:100%;
    text-align:center;
  }
}

@media (max-width: 480px){
  .hero-content h1{
    font-size:28px;
    letter-spacing:0.5px;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.6;
    margin-bottom:28px;
  }

  .btn-outline{
    padding:13px 28px;
    font-size:13px;
  }
}

@media (max-width: 360px){
  .hero-content h1{
    font-size:24px;
  }

  .hero-content p{
    font-size:14px;
  }
}
 */

    









































/* ================= SERVICES SECTION ================= */
.services-section{
  padding:80px 6%;
  background:#ffffff;
}

/* ================= TITLE ================= */
.section-title{
  text-align:center;
  font-size:48px;
  font-weight:500;
  color:#0a2c52;
  margin-bottom:60px;
}

/* ================= GRID ================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  border-top:1px solid #ededed;
  border-left:1px solid #ededed;
}

/* ================= CARD ================= */
.service-card{
  padding:60px 20px;
  text-align:center;
  border-right:1px solid #ededed;
  border-bottom:1px solid #ededed;
  transition:background 0.3s ease;
}

/* ICON */
.service-card img{
  width:64px;
  margin-bottom:24px;
}

/* TEXT */
.service-card h3{
  font-size:22px;
  font-weight:400;
  color:#0a2c52;
  line-height:1.4;
}

/* ================= HOVER EFFECT ================= */
.service-card:hover{
  background:#4f7cff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px){
  .services-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

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

@media (max-width: 600px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .section-title{
    font-size:34px;
  }

  .service-card{
    padding:40px 20px;
  }
}












































/* ===== Resources Section Wrapper ===== */
.resources-section {
  background: #4f7cff;
  padding: 70px 20px;
}

/* ===== Heading ===== */
.resources-title {
  text-align: center;
  font-size: 42px;
  color: #151515;
  font-weight: 400;
  margin-bottom: 60px;
}

/* ===== Main Layout ===== */
.resources-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
}

/* ===== Card Base ===== */
.resource-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ===== BIG CARD ===== */
.big-card {
  flex: 1.2;
}

/* Fixed image height (IMPORTANT) */
.big-img {
  /* height: 260px; */
  object-fit:contain;
}

/* ===== RIGHT COLUMN ===== */
.right-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ===== SMALL CARD ===== */
.small-card {
  display: flex;
  height: 340px; /* EXACT like screenshot */
}

/* Fixed image width */
.small-img {
  width: 40%;
  min-width: 40%;
  height: 100%;
  object-fit: contain;
}

/* ===== Image Handling ===== */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* KEY for same size look */
  display: block;
}

/* ===== Content ===== */
.card-content {
  padding: 24px;
}

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 22px;
  line-height: 1.4;
  color: #1f2937;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

/* Smaller heading in right cards */
.small-card h3 {
  font-size: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px){
  .resources-container{
    gap:24px;
  }
}

@media (max-width: 992px){
  .resources-container{
    flex-direction:column;
  }

  .small-card{
    flex-direction:column;
    height:auto;
  }

  .small-img{
    width:100%;
    height:200px;
  }
}

@media (max-width: 600px){
  .resources-title{
    font-size:32px;
  }

  .card-content h3{
    font-size:18px;
  }

  .card-content p{
    font-size:15px;
  }
}
























        body {
          margin: 0;
          font-family: "Segoe UI", system-ui, sans-serif;
          background: linear-gradient(135deg, #eaf2ff, #f6f9ff);
          color: #333;
        }

        .treatment-header {
          text-align: center;
          margin-top: 40px;
          margin-bottom: -100px;
        }

        .treatment-header h2 {
          /* margin-top: -10px; */
          margin-bottom: 50px;
          font-weight: 600;
          text-align: center;
          color: #4f7cff;
          font-size: 40px;

        }

        .treatment-header p {
          font-size: 16px;
          line-height: 1.75;
          color: #666;
          text-align: center;
          /* margin-top: -30px; */
          max-width: 1050px;
          margin: -30px auto 50px;

        }

        /* ================= SECTION ================= */
        .treatment-section {
          max-width: 1320px;
          margin: 80px auto;
          padding: 50px;
          display: flex;
          gap: 50px;
          min-height: 100vh;

          /* NEW */
          background: linear-gradient(135deg, #eaf2ff, #f6f9ff);
          border-radius: 32px;
          align-items: stretch;
        }





        .content-block {
          margin-bottom: 60px;
        }





        /* ================= LEFT ================= */
        .treatment-sidebar {
          width: 320px;
          position: sticky;
          top: 100px;

          /* NEW */
          background: #ffffff;
          border-radius: 26px;
          padding: 30px 20px;
          min-height: 520px;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .treatment-sidebar ul {
          list-style: none;
          padding: 0;
          /* margin: 0; */
        }

        .treatment-sidebar li {
          padding: 18px 22px;
          border-radius: 08px;
          margin-bottom: 16px;
          margin-top: -10px;
          cursor: pointer;
          border: 1px solid #e6ecff;
          transition: .3s;
          font-size: 18px;
          background: #f7f9ff;
        }

        .treatment-sidebar li:hover {
          background: #e8efff;
        }

        .treatment-sidebar li.active {
          background: #4f7cff;
          ;
          color: #fff;
          border-color: transparent;
        }

        /* ================= RIGHT ================= */
        .treatment-content {
          flex: 1;

          /* NEW */
          background: #ffffff;
          border-radius: 26px;
          padding: 34px 20px;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

          max-height: 560px;
          overflow-y: auto;
          position: relative;
        }

        /* SCROLLBAR */
        .treatment-content::-webkit-scrollbar {
          width: 8px;
        }

        .treatment-content::-webkit-scrollbar-track {
          background: #eef2ff;
          border-radius: 10px;
        }

        .treatment-content::-webkit-scrollbar-thumb {
          background: #9b9b9b;
          border-radius: 10px;
        }

        /* IMAGE */
        .treatment-content img {
          width: 100%;
          max-height: 150px;
          object-fit: cover;
          border-radius: 12px;
          /* margin-top: -60px; */
          margin-bottom: 20px;
        }

        /* TEXT */
        .treatment-content h2 {
          font-size: 30px;
          color: #4f7cff;
          ;
          margin-bottom: 14px;
        }

        .treatment-content p {
          font-size: 17px;
          max-width: 720px;
          margin-bottom: 20px;
          line-height: 1.7;
        }

        /* LIST */
        .points {
          padding-left: 20px;
        }

        .points li {
          font-size: 16px;
          margin-bottom: 10px;
          position: relative;
        }

        /* ================= RESPONSIVE ================= */
        @media(max-width:992px) {
          .treatment-section {
            flex-direction: column;
            padding: 30px;
          }

          .treatment-sidebar {
            width: 100%;
            position: relative;
            min-height: auto;
          }

          .treatment-content {
            max-height: none;
            overflow: visible;
          }
        }






        












        

.results-section{
  width:100%;
  padding:80px 20px;
  text-align:center;
  background:#fff;
}

.results-section h2{
  font-size:42px;
  font-weight:700;
  color:#1f2937;
  margin-bottom:14px;
}

.results-section p{
  font-size:18px;
  color:#64748b;
  margin-bottom:60px;
}

.results-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}

.result-card{
  background:#e8eaec;
  border-radius:22px;
  padding:50px 20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

.result-card h3{
  font-size:46px;
  font-weight:700;
  color:#4f7cff;
  margin-bottom:12px;
}

.result-card span{
  font-size:17px;
  color:#64748b;
}

/* ===== Responsive ===== */
@media(max-width:992px){
  .results-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .results-section h2{
    font-size:30px;
  }
  .results-section p{
    font-size:16px;
  }
  .results-grid{
    grid-template-columns:1fr;
  }
}






















/* ===== SECTION ===== */
.numbers-section{
  padding:100px 4%;
  background:#ffffff;
}

.numbers-heading{
  font-size:56px;
  font-weight:700;
  color:#0f1b3d;
  margin-bottom:70px;
}

/* ===== LAYOUT ===== */
.numbers-wrapper{
  display:flex;
  gap:60px;
  align-items:stretch;
}

/* ===== LEFT ===== */
.numbers-cards{
  display:flex;
  gap:24px;
  flex:1;
}

/* ===== CARD ===== */
.number-card{
  flex:1;
  background:#f5f7fb;
  border-radius:26px;
  padding:40px 32px;
  cursor:pointer;
  transition:all 0.35s ease;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.number-card h3{
  font-size:54px;
  color:#0f1b3d;
  margin-bottom:20px;
}

.number-card p{
  font-size:18px;
  color:#1f2a44;
  line-height:1.6;
}

.number-card .cta{
  margin-top:40px;
  font-weight:700;
  letter-spacing:1px;
  font-size:15px;
}

/* ===== ACTIVE ===== */
.number-card.active{
  background:#0a8edb;
}

.number-card.active h3,
.number-card.active p,
.number-card.active .cta{
  color:#ffffff;
}

/* ===== RIGHT IMAGE ===== */
.numbers-image{
  width:42%;
  border-radius:30px;
  overflow:hidden;
}

.numbers-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:30px;
  transition:opacity 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .numbers-wrapper{
    flex-direction:column;
  }

  .numbers-image{
    width:100%;
    height:420px;
  }

  .numbers-cards{
    flex-direction:column;
  }
}












































































/* ================= Medical Longevity Section ================= */
.medical-longevity-section{
  width:100%;
  background:#f5f5f7;
  padding:80px 0;
}

/* White rounded container */
.medical-longevity-card{
  max-width:1280px;
  margin:auto;
  background:#ffffff;
  border-radius:28px;
  padding:64px 40px;
  text-align:center;
}

/* Heading */
.medical-longevity-title{
  font-size:32px;
  font-weight:600;
  color:#1d1d1f;
  margin-bottom:24px;
}

/* Paragraph text */
.medical-longevity-text{
  font-size:18px;
  line-height:1.7;
  color:#333336;
  max-width:860px;
  margin:0 auto 20px;
}

/* Link */
.medical-longevity-link{
  color:#0066cc;
  text-decoration:none;
  font-weight:500;
}

.medical-longevity-link:hover{
  text-decoration:underline;
}

/* ================= Responsive ================= */
@media (max-width: 768px){
  .medical-longevity-card{
    padding:48px 28px;
  }

  .medical-longevity-title{
    font-size:26px;
  }

  .medical-longevity-text{
    font-size:16px;
  }
}

@media (max-width: 480px){
  .medical-longevity-card{
    padding:36px 20px;
    border-radius:22px;
  }

  .medical-longevity-title{
    font-size:22px;
  }
}






















/* ===== HealCard SECTION ===== */
.healcard-section{
  padding:60px 20px;
  background:#f8fbff;
  font-family:"Segoe UI", system-ui, sans-serif;
}

/* ===== TITLE ===== */
.healcard-section h2{
  text-align:center;
  color:#4f7cff;
  font-size:32px;
  font-weight:700;
  margin-bottom:50px;
}

/* ===== GRID (WIDTH FIXED HERE) ===== */
.healcard-grid{
  max-width:1400px;     /* 🔥 width bada */
  margin:0 auto;        /* center */
  padding:0 24px;       /* 🔥 start & end me halka gap */
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:32px;
}

/* ===== CARD ===== */
.healcard-card{
  background:#ffffff;
  border-radius:18px;
  padding:34px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* ===== ICON ===== */
.icon-box{
  width:64px;
  height:64px;
  background:#eaf2ff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.icon-box img{
  width:34px;
  display: block;
}

.card-head{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== TEXT ===== */
.healcard-card h3{
  font-size:22px;
  color:#4f7cff;
  margin-bottom:15px;
  /* margin: 0; */
}

.healcard-card .sub{
  font-size:15px;
  font-weight:500;
  color:#555;
  margin-bottom:14px;
}

.healcard-card p{
  font-size:15px;
  color:#666;
  line-height:1.6;
}

/* ===== BUTTONS ===== */
.btn-row{
  display:flex;
  gap:14px;
  margin-top:22px;
}

.btn{
  padding:10px 22px;
  border-radius:25px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
}

.btn.primary{
  background:#4f7cff;
  color:#fff;
}

.btn.outline{
  background:#fff;
  color:#4f7cff;
  border:1.5px solid #4f7cff;
}
/* ===== HEALCARD RESPONSIVE ===== */
@media (max-width: 900px) {

  .healcard-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .healcard-card {
    padding: 26px;
  }

  .healcard-section h2 {
    font-size: 26px;
  }
}



/* ===== GLOBAL MOBILE WIDTH FIX ===== */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}
























/* ================= Medical Safety Awareness ================= */
.medical-safety-section{
  background:#f5f5f7;
  padding:72px ;
}

/* Container */
.medical-safety-container{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns: 2.1fr 1fr;
  gap:36px;
}

/* Common card */
.medical-safety-card{
  background:#ffffff;
  border-radius:32px;
  padding:56px 56px;
}

/* Left card */
.medical-safety-left{
  text-align:left;
}

/* Right card */
.medical-safety-right{
  text-align:left;
}

/* Headings */
.medical-safety-heading{
  font-size:32px;
  font-weight:600;
  color:#1d1d1f;
  margin-bottom:22px;
}

.medical-safety-subheading{
  font-size:22px;
  font-weight:600;
  color:#1d1d1f;
  margin:20px 0 14px;
}

/* Text */
.medical-safety-text{
  font-size:18px;
  line-height:1.75;
  color:#333336;
  margin-bottom:20px;
}

.medical-safety-text.small{
  font-size:17px;
}

/* Icon */
.medical-safety-icon img{
  width:48px;
  height:48px;
}

/* Link */
.medical-safety-link{
  font-size:17px;
  color:#0066cc;
  text-decoration:none;
}

.medical-safety-link:hover{
  text-decoration:underline;
}

/* ================= Responsive ================= */
@media (max-width: 1024px){
  .medical-safety-container{
    grid-template-columns:1fr;
  }
}

@media (max-width: 600px){
  .medical-safety-card{
    padding:40px 28px;
    border-radius:26px;
  }

  .medical-safety-heading{
    font-size:26px;
  }

  .medical-safety-text{
    font-size:16px;
  }
}

@media (max-width: 480px){
  .medical-safety-card{
    padding:34px 22px;
  }

  .medical-safety-heading{
    font-size:24px;
  }
}













































 /* ================= INFO CARDS ================= */
        .info-cards-section {
          padding: 60px 20px;
          background: #f3f7ff;
        }


        .info-title {
          margin-top: -10px;
          margin-bottom: 50px;
          font-weight: 600;
          text-align: center;
          color: #4f7cff;
          font-size: 40px;
        }

        
        .info-discription {
          font-size: 16px;
          line-height: 1.75;
          color: #666;
          text-align: center;
          margin-top: -30px;
          max-width: 950px;
          margin: -30px auto 50px;
        }

        .info-cards-grid {
          max-width: 1200px;
          margin: auto;
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 30px;
        }

        /* CARD */
        .info-card {
          background: #fff;
          border-radius: 16px;
          padding: 28px 30px;
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          min-height: 210px;
          /*  fixed height */
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        }

        /* TEXT */
        .info-content h3 {
          font-size: 20px;
          color: #4f7cff;
          margin-bottom: 12px;
        }

        .info-content p {
          font-size: 14.5px;
          line-height: 1.6;
          color: #111;
          margin-bottom: 22px;
          max-width: 100%;
        }

        /* ICON */
        .info-icon i {
          font-size: 42px;
          color: #4f7cff;
        }

        /* READ MORE */
        .read-more {
          font-size: 14px;
          color: #000;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          gap: 10px;
          transition: all .35s ease;
        }

        /* BUTTON STYLE (last card) */
        .btn {
          /* background: #4f7cff; */
          color: #4f7cff;
          border: 1.5px solid #4f7cff;
          padding: 8px 18px;
          border-radius: 20px;
        }

        /* 🔥 HOVER EFFECT (only hover, no active) */
        .read-more:hover {
          color: #01103b;
          padding-right: 28px;
          /* right side increase */
        }

        .btn:hover {
          /* background: #0237d7; */
          padding-right: 30px;
          /* right side grow */
          color: #0077cc;
        }

        /* ================= RESPONSIVE ================= */
        @media(max-width:992px) {
          .info-cards-grid {
            grid-template-columns: 1fr 1fr;
          }
        }

        @media(max-width:600px) {
          .info-cards-grid {
            grid-template-columns: 1fr;
          }
        }





















/* ================= Apple More to Explore ================= */
.apple-explore{
  padding:50px 20px;
  text-align:center;
  margin-top: -10px;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

/* Title */
.apple-title{
  font-size:40px;
  font-weight:600;
  margin-bottom:64px;
  color:#1d1d1f;
}

/* Cards wrapper */
.apple-cards{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px;
}

/* Card */
.apple-card{
  text-align:center;
}

/* Image container */
.apple-img{
  border-radius:22px;
  overflow:hidden;
  margin-bottom:28px;
}

.apple-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Background styles (Apple feel) */
.bg-soft{
  background:#e8f0fe;
  padding:48px;
}

.bg-gradient{
  background:linear-gradient(135deg,#7dd3fc,#60a5fa);
}

/* Card heading */
.apple-card h3{
  font-size:21px;
  font-weight:600;
  margin-bottom:12px;
  color:#1d1d1f;
}

/* Text */
.apple-card p{
  font-size:17px;
  line-height:1.6;
  color:#6e6e73;
  max-width:330px;
  margin:0 auto 16px;
}

/* Link */
.apple-card a{
  font-size:17px;
  color:#0066cc;
  text-decoration:none;
}

.apple-card a:hover{
  text-decoration:underline;
}

/* ================= Responsive ================= */
@media (max-width: 992px){
  .apple-cards{
    grid-template-columns:repeat(2,1fr);
    gap:36px;
  }

  .apple-title{
    font-size:34px;
  }
}

@media (max-width: 600px){
  .apple-cards{
    grid-template-columns:1fr;
  }

  .apple-title{
    font-size:30px;
  }

  .apple-card p{
    font-size:16px;
  }
}
