 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     background: #eef0f5;

 }

 .hero {
     margin: 0 auto;
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 60px;
     position: relative;
     overflow: hidden;
 }

 .hero-section {
     /* height: calc(100vh - 52px); */
     padding: 64px 0px;
     margin: 0 auto;
     overflow: hidden;
     position: relative;
     z-index: 1;
 }

 /* Right blue background */
 .hero-section::after {
     content: "";
     position: absolute;
     right: 0;
     bottom: 0;
     width: 45%;
     height: 100%;
     background: var(--primary-color);
     clip-path: polygon(90% 0, 100% 0, 100% 100%, 0 100%);
     z-index: 0;
 }

 .left-content {
     /* width: 52%; */
     position: relative;
     z-index: 2;
 }

 .top-badge {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     border: 1px solid #b9d0ff;
     background: #fff;
     padding: 12px 24px;
     border-radius: 30px;
     font-size: 12px;
     color: var(--text-primary);
     margin-bottom: 32px;
     font-weight: 600;
     line-height: 16px;
     letter-spacing: 0.3px;
 }

 .main-heading {
     font-family: var(--heading-bold-font-family);
     font-size: clamp(2rem, 4.5vw, 2.9rem);
     line-height: 120%;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 20px;
     max-width: 710px;
 }

 .main-heading span {
     position: relative;
     display: inline-block;
 }

 .main-heading span::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0px;
     width: 100%;
     height: 6px;
     background: var(--primary-color);
     border-radius: 20px;
     z-index: -1;
 }

 .description {
     max-width: 710px;
     font-size: 18px;
     font-weight: 400;
     line-height: 28px;
     letter-spacing: 5%;
     color: var(--text-primary);
     text-align: justify;
     margin-bottom: 20px;
 }

 .button-group {
     display: flex;
     gap: 24px;
     margin-bottom: 20px;
 }

 /* 
 .btn {
     padding: 12px 20px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 600;
     line-height: 110.00000000000001%;
     letter-spacing: 5%;
     cursor: pointer;
     transition: 0.3s;
     border: none;
 } */

 .btn-primary {
     background: var(--primary-color);
     color: #fff;
 }

 .btn-primary:hover {
     background: var(--primary-dark);
 }

 .btn-outline {
     background: var(--main-bg);
     color: var(--text-primary);
     border: 2px solid var(--primary-color);
 }

 .btn-outline:hover {
     background: var(--bg-dark);
     color: #fff;
     border: 2px solid var(--bg-dark);
 }

 .bottom-text {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     font-size: 14px;
     font-weight: 500;
     line-height: 110.00000000000001%;
     color: var(--text-primary);
 }

 .right-card {
     max-width: 548px;
     background: linear-gradient(213.03deg, rgba(0, 101, 242, 0.95) -113.8%, rgba(255, 255, 255, 0.95) 26.24%);

     border-radius: 30px;
     padding: 28px;
     position: relative;
     z-index: 2;
     border: 2px solid #fff;
     box-shadow: 0 3px 33px 4px #0C0C0D14;
     overflow: hidden;
 }



 .card-title {
     font-size: 28px;
     font-weight: 700;
     line-height: 120%;
     letter-spacing: 2%;
     color: var(--text-primary);
     margin-bottom: var(--space-16);
     position: relative;
     z-index: 2;
 }

 .step-card {
     background: var(--bg-light);
     border: 1px solid #E2E2E2;
     border-radius: 16px;
     padding: 16px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 12px;
     position: relative;
     z-index: 2;
     box-shadow: 0px 5px 14px 0px #080F340A;

 }

 .step-left {
     display: flex;
     gap: 16px;
     align-items: flex-start;
 }

 .step-number {
     width: 46px;
     height: 48px;
     background: var(--text-primary);
     color: #fff;
     border-radius: 8px;
     padding: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
     font-weight: 600;
     line-height: 120%;
     flex-shrink: 0;
 }

 .step-content h3 {
     font-size: 16px;
     font-weight: 600;
     line-height: 110.00000000000001%;
     margin-bottom: 8px;
     color: var(--text-primary);
 }

 .step-content p {
     color: var(--text-primary);
     font-size: 14px;
     font-weight: 400;
     line-height: 120%;
     max-width: 318px;
 }

 .open-link {
     display: flex;
     gap: 2px;
     color: var(--primary-color);
     font-size: 14px;
     font-weight: 600;
     line-height: 110.00000000000001%;
     text-decoration: none;
     white-space: nowrap;
 }

 @media (max-width:1280px) {
     .hero-section {
         padding: var(--space-32) 0;
     }

     .step-card {
         padding: 12px;
         margin-bottom: 8px;
     }

     .right-card {
         padding: 20px;
     }

 }

 @media(max-width:1200px) {
     .hero {
         flex-direction: column;
         align-items: center;
     }

     .main-heading {
         text-align: center;
     }

     .left-content,
     .right-card {
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         width: 100%;
     }


     .description {
         text-align: center;
     }

     .bottom-text {
         display: flex;
         justify-content: center;
     }
 }

 @media(max-width:768px) {
     .description {
         font-size: 17px;
     }

     .button-group {
         flex-direction: column;
     }

     .bottom-text {
         font-size: 15px;
     }

     .step-card {
         flex-direction: column;
         align-items: flex-start;
         gap: 15px;
     }

     .open-link {
         margin-left: 64px;
     }
 }




 /* Resource Section */

 .resource-section {
     background: var(--bg-main);
 }

 /* Heading */
 .section-top {
     padding: 85px 0 65px 0;
 }

 .section-top span {
     font-size: 14px;
     font-weight: 600;
     line-height: 120%;
     color: var(--primary-color);
     text-transform: uppercase;
     margin-bottom: 8px;
  }

 .section-top h2 {
     font-family: var(--heading-font-bold-family);
     font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
     line-height: 120%;
     font-weight: 700;
     color: #0d0c22;
     margin-bottom: 8px;
     margin-left: -4px;
 }

 .section-top p {
     font-size: 18px;
     font-weight: 400;
     color: var(--text-primary);
     max-width: 950px;
     line-height: 120%;
 }

 /* Grid */

 .resource-grid {
     padding-bottom: 65px;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
 }

 /* Card */

 .resource-card {
     position: relative;
     display: flex;
     flex-direction: column;
     max-width: 290px;
 }

 .resource-card:not(:last-child) {
     border-right: 1px solid #d7d7d7;
     padding-right: 55px;
     margin-right: 55px;
 }

 .icon-box {
     margin-bottom: 32px;
     font-size: 34px;
     display: inline-block;
 }

 .green {
     color: #2ea043;
 }

 .blue {
     color: #0f63f4;
 }

 .dark {
     color: #0d0c22;
 }

 .orange {
     color: #f97316;
 }

 .resource-card h3 {
     font-weight: 600;
     font-size: 20px;
     line-height: 110.00000000000001%;
     letter-spacing: 0%;
     margin-bottom: 16px;

 }

 .resource-card p {
     font-weight: 400;
     font-style: Regular;
     font-size: var(--p-size-16);
     line-height: 140%;
     letter-spacing: 0%;
     margin-bottom: 16px;

 }

 .resource-card a {
     display: flex;
     gap: 4px;
     font-weight: 500;
     font-style: Medium;
     font-size: 16px;
     line-height: 110.00000000000001%;
     letter-spacing: 0%;
     color: var(--primary-color);


 }

 .resource-card a:hover {
     transform: translateX(5px);
 }



 @media(max-width:1200px) {

     .section-top h1 {
         font-size: 48px;
     }

     .resource-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 50px;
     }

     .resource-card {
         border: none !important;
         margin: 0 !important;
         padding: 0 !important;
     }

 }

 @media(max-width:768px) {

     .section-top h1 {
         font-size: 36px;
     }

     .section-top p {
         font-size: 17px;
     }



     .resource-card h3 {
         font-size: 22px;
     }

     .resource-card p {
         font-size: 16px;
     }

     .resource-card a {
         font-size: 17px;
     }

 }

 @media (max-width:500px) {
     .resource-grid {
         grid-template-columns: 1fr;
         margin-top: 50px;
     }
 }


 /*  Video Section */

 .video-section {
     background: var(--bg-light);
     padding-bottom: 85px;
 }

 /* Header */

 .video-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
 }

 .video-title span {
     color: var(--primary-color);
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 .video-title h2 {
     font-size: 62px;
     line-height: 1.1;
     margin-top: 12px;
     color: var(--text-primary);
     font-weight: 700;
 }

 .video-title p {
     margin-top: 15px;
     font-size: 24px;
     color: #333;
     line-height: 1.7;
 }

 /* Buttons */

 .video-buttons {
     display: flex;
     gap: 16px;
     margin-top: 10px;
 }

 .nav-btn {
     width: 58px;
     height: 58px;
     border: none;
     border-radius: 16px;
     padding: 16px;
     font-size: 28px;
     cursor: pointer;

 }

 .light-btn {
     background: var(--bg-main);
     color: var(--primary-color);
 }

 .dark-btn {
     background: var(--text-primary);
     color: var(--bg-main);
 }

 .nav-btn:hover {
     transform: translateY(-3px);
 }

 /* Grid */

 .video-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 /* Card */

 .video-card {
     max-width: 430px;
     gap: 32px;
     opacity: 1;
     border-radius: 16px;
     border: 1px solid var(--bg-main);
     overflow: hidden;
     box-shadow: 0px 5px 14px 0px #080F340A;

 }

 .video-card:hover {
     transform: translateY(-6px);
 }

 /* Image */

 .video-image {
     position: relative;
     height: 240px;
     overflow: hidden;
 }

 .video-image img {
     /* width: 100%;
     height: 100%; */
     object-fit: cover;

 }

 .video-image::after {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(15, 99, 244, 0.25);
 }

 /* Play Button */

 .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 68px;
     height: 68px;
     background: var(--bg-main);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2;
     cursor: pointer;
 }

 .play-btn img {
     font-size: 34px;
     color: var(--primary-color);
     margin-left: 6px;
 }

 /* Content */

 .video-content {
     padding: var(--space-16);
 }

 .duration {
     margin-top: 32px;
     font-size: 16px;
     font-weight: 400;
     line-height: 28px;
     color: var(--text-primary);
 }

 .video-content h3 {
     font-weight: 700;
     font-style: Bold;
     font-size: var(--p-size-18);
     line-height: 140%;
     letter-spacing: 0%;
     vertical-align: middle;
     text-transform: capitalize;
     margin-top: 32px;
     margin-bottom: 16px;
     color: var(--text-primary);

 }

 .video-content p {
     font-weight: 400;
     font-size: 15px;
     line-height: 28px;
     letter-spacing: 0%;
     margin-bottom: 32px;

 }

 .video-content a {
     display: flex;
     gap: 4px;
     font-weight: 500;
     font-size: 16px;
     line-height: 110.00000000000001%;
     letter-spacing: 0%;
     color: var(--primary-color);

 }


 @media(max-width:1000px) {

     .video-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .video-title h2 {
         font-size: 48px;
     }

 }

 @media(max-width:768px) {



     .video-header {
         flex-direction: column;
         align-items: flex-start;
     }

     .video-title h2 {
         font-size: 36px;
     }

     .video-title p {
         font-size: 17px;
     }

   
     .video-content h3 {
         font-size: 22px;
     }

     .video-content p {
         font-size: 16px;
     }

     .video-content a {
         font-size: 17px;
     }

 }

 @media (max-width:600px) {
      .video-grid {
         grid-template-columns: 1fr;
     }

    
 }


 /* =========================
   Featured Resource Section
========================= */

 .featured-resource-section {
     padding: 85px 0;
     background: var(--bg-main);
 }



 /* Heading */

 .featured-resource-section .featured-resource-section__heading {
     margin-bottom: 60px;
 }

 .featured-resource-section .featured-resource-section__label {
     display: inline-block;
     font-size: 14px;
     font-weight: 600;
     line-height: 120%;
     color: var(--primary-color);
     text-transform: uppercase;
     margin-bottom: 8px;
 }

 .featured-resource-section .featured-resource-section__title {
     font-family: var(--heading-font-family);
     font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
     font-weight: 600;
     line-height: 120%;
     color: var(--text-primary);
     margin-bottom: 8px;
 }

 .featured-resource-section .featured-resource-section__description {
     font-size: 18px;
     line-height: 120%;
     color: var(--text-primary);
 }

 /* Grid */

 .featured-resource-section .featured-resource-section__grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 /* Small Cards */

 .featured-resource-section .featured-resource-section__card {
     background: var(--bg-main);
     border: 1px solid #EFF0F6;
     border-radius: 16px;
     padding: 24px;
     box-shadow: 0px 5px 14px 0px #080F340A;
     ;
 }

 /* Badge */

 .featured-resource-section .featured-resource-section__badge,
 .featured-resource-section .featured-resource-section__highlight-badge {
     display: inline-flex;
     max-width: fit-content;
     align-items: center;
     background-color: #E6F0FE;
     justify-content: center;
     padding: 8px 16px;
     border-radius: 999px;
     border: 1px solid var(--primary-color);
     font-size: 12px;
     font-weight: 700;
     line-height: 100%;
     letter-spacing: 5%;
     color: var(--primary-color);
     margin-bottom: 24px;
 }

 .featured-resource-section .featured-resource-section__highlight-badge {
     background: rgba(0, 0, 0, 0.15);
     color: #ffffff;
     letter-spacing: 5%;
 }

 /* Titles */

 .featured-resource-section .featured-resource-section__card-title {
     font-weight: 600;
     font-size: 18px;
     line-height: 140%;
     letter-spacing: 0%;
     margin-bottom: 24px;

 }

 /* Text */

 .featured-resource-section .featured-resource-section__card-text {
     font-size: 16px;
     font-weight: 400;
     line-height: 140%;
     color: var(--text-primary);
  }

 /* Link */

 .featured-resource-section .featured-resource-section__link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     text-decoration: none;
     color: var(--primary-color);
     font-size: 16px;
     font-weight: 500;
     line-height: 110.00000000000001%;
 }

 /* Highlight Card */

 .featured-resource-section .featured-resource-section__highlight-card {
     grid-row: span 2;
     background: #0f63f4;
     border-radius: 16px;
     padding: 24px;
     color: #ffffff;
     display: flex;
     flex-direction: column;
     /* justify-content: space-between; */
 }

 .featured-resource-section .featured-resource-section__highlight-title {
     font-size: clamp(var(--h2-size-28), 4.5vw, 32px);
     line-height: 46px;
     font-weight: 700;
  }

 .featured-resource-section .featured-resource-section__highlight-text {
     font-size: 16px;
     font-weight: 400;
     line-height: 140%;
     color: rgba(255, 255, 255, 0.9);
      letter-spacing: 5%;
 }

 /* Buttons */

 .featured-resource-section .featured-resource-section__button-group {
     display: flex;
     gap: 18px;
     margin-top: 90px;
 }

 .featured-resource-section .featured-resource-section__primary-btn,
 .featured-resource-section .featured-resource-section__outline-btn {
     padding: 12px 20px;
     border-radius: 8px;
     text-decoration: none;
     font-size: 16px;
     font-weight: 600;
     transition: 0.3s;
 }

 .featured-resource-section .featured-resource-section__primary-btn {
     font-size: 14px;
     font-weight: 600;
     line-height: 110.00000000000001%;
     letter-spacing: 5%;
     background: #ffffff;
     color: #0f63f4;
 }

 .featured-resource-section .featured-resource-section__outline-btn {
     font-size: 14px;
     font-weight: 600;
     line-height: 110.00000000000001%;
     letter-spacing: 5%;
     border: 2px solid #ffffff;
     color: #ffffff;
 }

 /* Horizontal Card */

 .featured-resource-section .featured-resource-section__horizontal-card {
     grid-column: span 2;
     display: flex;
     gap: 30px;
     align-items: center;
     background: #ffffff;
     border-radius: 16px;
     padding: 30px;
     border: 1px solid #e5e7eb;
     box-shadow: 0px 5px 14px 0px #080F340A;

 }

 .featured-resource-section .featured-resource-section__image-wrapper img {
     width: 260px;
     height: 220px;
     object-fit: cover;
     border-radius: 8px;
 }

 /* Responsive */

 @media (max-width: 1200px) {

     .featured-resource-section .featured-resource-section__grid {
         grid-template-columns: 1fr 1fr;
     }

     .featured-resource-section .featured-resource-section__highlight-card {
         grid-column: span 2;
         grid-row: auto;
     }

     .featured-resource-section .featured-resource-section__horizontal-card {
         grid-column: span 2;
     }

 }

 @media (max-width: 768px) {

     /* .featured-resource-section {
         padding: 60px 20px;
     } */

     .featured-resource-section .featured-resource-section__grid {
         grid-template-columns: 1fr;
     }

     .featured-resource-section .featured-resource-section__highlight-card,
     .featured-resource-section .featured-resource-section__horizontal-card {
         grid-column: span 1;
     }

     .featured-resource-section .featured-resource-section__horizontal-card {
         flex-direction: column;
         align-items: flex-start;
     }

     .featured-resource-section .featured-resource-section__image-wrapper img {
         width: 100%;
         height: auto;
     }

     .featured-resource-section .featured-resource-section__card-title {
         font-size: 28px;
     }

     .featured-resource-section .featured-resource-section__description,
     .featured-resource-section .featured-resource-section__card-text,
     .featured-resource-section .featured-resource-section__highlight-text {
         font-size: 17px;
     }

     .featured-resource-section .featured-resource-section__button-group {
         flex-direction: column;
     }

 }






 /*Download Resource Section  */

 .download-resource-section {
     padding: 85px 0;
     background: var(--bg-light);
 }



 /* Header */

 .download-resource-section .download-resource-section__header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 40px;
 }

 /* Heading */

 .download-resource-section .download-resource-section__label {
     display: inline-block;
     font-size: 14px;
     font-weight: 600;
     line-height: 120%;
     text-transform: uppercase;
     color: var(--primary-color);
     margin-bottom: 8px;
 }

 .download-resource-section .download-resource-section__title {
     font-family: var(--heading-font-family);
     font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
     line-height: 120%;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 8px;
 }

 .download-resource-section .download-resource-section__description {
     font-size: 18px;
     font-weight: 400;
     line-height: 120%;
     color: var(--text-primary);
     margin-bottom: 65px;

 }

 /* Navigation */

 .download-resource-section .download-resource-section__navigation {
     display: flex;
     align-items: center;
     gap: 18px;
 }

 .download-resource-section .download-resource-section__nav-btn {
     display: flex;
     justify-content: center;
     padding: 16px;
     border-radius: 16px;
     /* width: 72px;
     height: 72px; */
     border: none;
     border-radius: 20px;
     font-size: 28px;
     cursor: pointer;
     transition: 0.3s;
 }

 .download-resource-section .download-resource-section__nav-btn--light {
     background: var(--bg-main);
     color: var(--primary-color);
 }

 .download-resource-section .download-resource-section__nav-btn--dark {
     background: var(--text-primary);
     color: var(--bg-main);
 }

 .download-resource-section .download-resource-section__nav-btn:hover {
     transform: translateY(-4px);
 }

 /* Grid */

 .download-resource-section .download-resource-section__grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 /* Card */

 .download-resource-section .download-resource-section__card {
     background: var(--bg-main);
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid #e5e7eb;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
     transition: 0.3s;
 }

 .download-resource-section .download-resource-section__card:hover {
     transform: translateY(-6px);
 }

 /* Image */

 .download-resource-section .download-resource-section__image-wrapper {
     height: 320px;
     overflow: hidden;
     position: relative;
 }

 .download-resource-section .download-resource-section__image-wrapper::after {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(15, 99, 244, 0.35);
 }

 .download-resource-section .download-resource-section__image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Content */

 .download-resource-section .download-resource-section__content {
     padding: 24px;
 }

 /* Badge */

 .download-resource-section .download-resource-section__badge {
     font-weight: 600;
     font-size: 12px;
     line-height: 100%;
     letter-spacing: 5%;
     color: var(--primary-color);
     border: 1px solid var(--primary-color);
     background: #E6F0FE;
     padding: 8px 16px;
     border-radius: 999px;
     margin-bottom: 24px;

 }

 /* Title */

 .download-resource-section .download-resource-section__card-title {
     font-family: var(--heading-font-family);
     font-weight: 700;
     font-size:var(--p-size-18);
     line-height: 140%;
     letter-spacing: 0%;
     vertical-align: middle;
     text-transform: capitalize;
     color: var(--text-primary);
     margin-top: 24px;

 }

 /* Text */

 .download-resource-section .download-resource-section__card-text {
     font-weight: 400;
     font-size: 16px;
     line-height: 28px;
     letter-spacing: 0%;
     color: var(--text-primary);
     margin-top: 24px;
     margin-bottom: 24px;
 }

 /* Link */

 .download-resource-section .download-resource-section__link {
    display: flex;
     font-weight: 500;
     font-size: 16px;
     line-height: 110.00000000000001%;
     letter-spacing: 0%;
     color: var(--primary-color);

 }

 /* Responsive */

 @media (max-width: 1200px) {

     .download-resource-section .download-resource-section__grid {
         grid-template-columns: repeat(2, 1fr);
     }

 }

 @media (max-width: 768px) {



     .download-resource-section .download-resource-section__header {
         flex-direction: column;
     }

     .download-resource-section .download-resource-section__grid {
         grid-template-columns: 1fr;
     }


     .download-resource-section .download-resource-section__description {
         font-size: 17px;
     }

     .download-resource-section .download-resource-section__card-text {
         font-size: 16px;
     }

     .download-resource-section .download-resource-section__nav-btn {
         width: 58px;
         height: 58px;
         border-radius: 16px;
         font-size: 22px;
     }

 }






 /*   Events & Downloads Section  */

 .events-download-section {
     padding: 85px 0;
     background: var(--bg-main);
 }



 /* Header */

 .events-download-section__header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
 }

 /* Heading */

 .events-download-section__heading {}

 .events-download-section__label {
     font-weight: 600;
     font-size: 14px;
     line-height: 120%;
     letter-spacing: 0%;
     vertical-align: middle;
     text-transform: uppercase;
     color: var(--primary-color);
     margin-bottom: 8px;
 }

 .events-download-section__title {
     font-weight: 700;
     font-style: Bold;
     font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
     line-height: 120%;
     letter-spacing: 0%;
     vertical-align: middle;
     color: var(--text-primary);
     margin-bottom: 16px;

 }

 .events-download-section__description {
     font-weight: 400;
     font-size: 18px;
     line-height: 175%;
     letter-spacing: 0%;
     vertical-align: middle;
     color: var(--text-primary);
     margin-bottom: 65px;

 }

 /* Contact Button */

 .events-download-section__contact-btn {
     background: var(--primary-color);
     color: var(--bg-main);
     border: none;
     border-radius: var(--radius-8);
     padding: 14px var(--space-24);
     font-size: var(--p-size-14);
     font-weight: var(--font-700);
     font-family: var(--para-font-family);
     cursor: pointer;
     transition: background 0.18s;
     text-decoration: none;
     display: inline-block;
     border: 2px solid var(--primary-color);
     letter-spacing: 5%;
     min-width: 186px;
     text-align: center;

 }

 .events-download-section__contact-btn:hover {
     transform: translateY(-4px);
 }

 /* Grid */

 .events-download-section__grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 50px;
 }

 /* Card */

 .events-download-section__card {
     background: #ffffff;
     border: 1px solid #EFF0F6;
     border-radius: 16px;
     padding: 40px 32px;
     box-shadow: 0px 5px 14px 0px #080F340A;
 }

 /* Card Header */

 .events-download-section__card-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
     margin-bottom: 16px;
 }

 .events-download-section__card-title {
     font-weight: 600;
     font-size: 32px;
     line-height: 140%;
     letter-spacing: 0%;
     color: var(--text-primary);

 }

 /* Badge */

 .events-download-section__badge {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 8px 16px;
     border-radius: 999px;
     border: 1px solid var(--primary-color);
     font-weight: 600;
     font-size: 12px;
     color: var(--primary-color);
     line-height: 100%;
     letter-spacing: 5%;
     background: #E6F0FE;
     min-width: 128px;
     text-align: center;
 }

 /* Items */

 .events-download-section .events-download-section__item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 30px;
     padding: 34px 0;
     border-bottom: 1px solid #e5e7eb;
 }

 .events-download-section .events-download-section__item--last {
     border-bottom: none;
     padding-bottom: 0;
 }

 .events-download-section .events-download-section__item-left {
     display: flex;
     align-items: flex-start;
     gap: 22px;
 }

 /* Date Box */

 .events-download-section .events-download-section__date-box {
     font-family: var(--heading-font-family);
     width: 51px;
     padding: 8px;
     height: 54px;
     border-radius: 8px;
     background: var(--text-primary);
     color: var(--bg-main);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .events-download-section .events-download-section__date-box span {
     font-size: 16px;
     font-weight: 600;
     line-height: 120%;
 }

 .events-download-section .events-download-section__date-box small {
     font-size: 16px;
     font-weight: 500;
 }

 /* Icons */

 .events-download-section .events-download-section__icon-box {
     width: 45.277122497558594px;
     height: 54px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 34px;
     flex-shrink: 0;
 }

 /* Content */

 .events-download-section .events-download-section__item-content h4 {
     font-weight: 600;
     font-size: 18px;
     line-height: 120%;
     letter-spacing: 0%;
     vertical-align: middle;
     color: var(--text-primary);
     margin-bottom: 4px;
 }

 .events-download-section .events-download-section__item-content p {
     font-weight: 400;
     font-size: 14px;
     line-height: 160%;
     letter-spacing: 0%;
     color: var(--text-primary);
 }

 /* Link */

 .events-download-section .events-download-section__item-link {
     text-decoration: none;
     color: var(--primary-color);
     font-weight: 500;
     font-size: 16px;
     line-height: 110.00000000000001%;
     letter-spacing: 0%;

 }

 /* Responsive */

 @media (max-width: 1200px) {

     .events-download-section .events-download-section__grid {
         grid-template-columns: 1fr;
     }


 }

 @media (max-width: 768px) {

     .events-download-section .events-download-section__header {
         flex-direction: column;
     }

     .events-download-section .events-download-section__card-header {
         flex-direction: column;
         align-items: flex-start;
     }

     .events-download-section .events-download-section__item {
         flex-direction: column;
         align-items: flex-start;
     }

     .events-download-section .events-download-section__item-left {
         flex-direction: column;
     }

     .events-download-section .events-download-section__description {
         font-size: 17px;
     }

     .events-download-section .events-download-section__item-content p {
         font-size: 16px;
     }

     .events-download-section .events-download-section__item-link {
         font-size: 18px;
     }

 }


 /* Implementation Support Section    */

 .implementation-support-section {
     padding: 85px 0;
     background: #eaf0ff33;
 }



 /* Wrapper */

 .implementation-support-section .implementation-support-section__wrapper {
     /* background: #f3f4f6; */
     border-radius: 32px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 32px;
 }

 /* Left Content */

 .implementation-support-section .implementation-support-section__content {
     max-width: 760px;
 }

 /* Badge */

 .implementation-support-section .implementation-support-section__badge {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 8px 16px;
     border-radius: 999px;
     border: 1px solid var(--primary-color);
     color: var(--primary-color);
     background: #E6F0FE;
     font-weight: 600;
     font-size: 12px;
     line-height: 100%;
     letter-spacing: 5%;
     margin-bottom: 40px;

 }

 /* Title */

 .implementation-support-section .implementation-support-section__title {
     font-weight: 700;
     font-style: Bold;
     font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
     line-height: 130%;
     letter-spacing: 0%;
     margin-bottom: 16px;
     color: var(--text-primary);
 }

 /* Description */

 .implementation-support-section .implementation-support-section__description {
     font-weight: 400;
     font-size: 16px;
     line-height: 180%;
     letter-spacing: 0%;
     color: var(--text-primary);
     margin-bottom: 40px;
 }

 /* Buttons */

 .implementation-support-section .implementation-support-section__button-group {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .implementation-support-section .implementation-support-section__primary-btn,
 .implementation-support-section .implementation-support-section__outline-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 15px 14px;
     border-radius: 12px;
     text-decoration: none;
     font-size: 16px;
     font-weight: 600;
     transition: 0.3s;
 }

 .implementation-support-section .implementation-support-section__primary-btn {
     background: var(--primary-color);
     color: var(--bg-main);
 }

 .implementation-support-section .implementation-support-section__outline-btn {
     border: 2px solid var(--primary-color);
     color: var(--text-primary);
     background: transparent;
 }

 .implementation-support-section .implementation-support-section__primary-btn:hover,
 .implementation-support-section .implementation-support-section__outline-btn:hover {
     transform: translateY(-4px);
 }

 /* Right Card */

 .implementation-support-section .implementation-support-section__card {
     width: 430px;
     background: var(--bg-main);
     border-radius: 20px;
     padding: 32px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
     flex-shrink: 0;
 }

 /* Item */

 .implementation-support-section .implementation-support-section__item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
     padding: 28px 0;
     border-bottom: 1px solid #e5e7eb;
 }

 .implementation-support-section .implementation-support-section__item--last {
     border-bottom: none;
     padding-bottom: 0;
 }

 /* Item Title */

 .implementation-support-section .implementation-support-section__item-title {
     font-weight: 500;
     font-size: 18px;
     line-height: 110.00000000000001%;
     letter-spacing: 0%;
     color: var(--text-primary);

 }

 /* Status */

 .implementation-support-section .implementation-support-section__item-status {
     font-weight: 400;
     font-size: 16px;
     line-height: 110.00000000000001%;
     letter-spacing: 0%;
     color: #6F7C8E;

 }

 /* Responsive */

 @media (max-width: 1200px) {

     .implementation-support-section .implementation-support-section__wrapper {
         flex-direction: column;
         align-items: flex-start;
     }

     .implementation-support-section .implementation-support-section__card {
         width: 100%;
     }


 }

 @media (max-width: 768px) {

     .implementation-support-section .implementation-support-section__wrapper {
         padding: 40px 24px;
         gap: 50px;
     }

     .implementation-support-section .implementation-support-section__description {
         font-size: 17px;
     }

     .implementation-support-section .implementation-support-section__button-group {
         flex-direction: column;
         align-items: flex-start;
         width: 100%;
     }

     .implementation-support-section .implementation-support-section__primary-btn,
     .implementation-support-section .implementation-support-section__outline-btn {
         width: 100%;
     }

     .implementation-support-section .implementation-support-section__item {
         flex-direction: column;
         align-items: flex-start;
     }

 }