

  * {
    box-sizing: border-box;
  }
  
  html {
    font-size: 16px;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0 10px;
  }
  
  .highlight-text { 
    color: #e41e3f; 
    font-weight: bold; 
    font-size: 4vw;
  }

  .main-title {
    background-color: #f8d7da;
    /* You might also want some padding to make it look nicer */
    padding: 20px;
    /* Optional: rounded corners */
    border-radius: 8px;
  }
  .course-box {
    background-color: #cc0000;
    color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
  }
  .course-feature {
    background-color: white;
    color: #333;
    border-radius: 10px;
    padding: 12px 15px;
    margin: 10px 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    transition: transform 0.3s ease;
  }
  .course-feature:hover {
    transform: translateY(-5px);
  }
  .btn-yellow {
    background-color: #ffd500;
    color: black;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  .btn-yellow:hover {
    background-color: #ffea00;
    transform: scale(1.05);
  }
 /* Red Color Palette */
:root {
    --primary-red: #e63946;     /* Vibrant red */
    --light-red: #f8d7da;       /* Soft pink-red */
    --dark-red: #8b0000;        /* Deep red */
    --accent-red: #ff6b6b;      /* Coral red */
    --neutral: #f1faee;         /* Off-white */
  }
  
  /* Base Card Styling */
  .instructor-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    padding: 20px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    width: 100%;
    border: red 1px solid;
  }
  
  .instructor-card:hover {
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
    transform: translateY(-5px);
  }
  
  /* Profile Image */
  .profile-img {
    border: 4px solid var(--light-red);
    transition: all 0.3s ease;
    width: 80%;
    height: 100%;
    object-fit: cover;
  }
  
  .profile-img:hover {
    border-color: var(--primary-red);
  }
  
  /* Text Styling */
  .highlight-text {
    color: var(--dark-red);
    border-bottom: 2px solid red;
    padding-bottom: 5px;
    font-size: 2krem;
    margin-bottom: 10px;
    display: inline-block;
  }
  
  /* List Styling */
  .instructor-card ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 10px;
  }
  
  .instructor-card ul li {
    color: #4b5563;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
  }
  
  .instructor-card ul li:before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .instructor-card .d-flex {
      flex-direction: row;
      align-items: center;
      text-align: center;
    }
    
    .profile-img {
      margin-bottom: 0px;
      width: 80%;
      height: 100%;
    }
    
    .instructor-card ul li {
      padding-left: 0;
    }
    
    .instructor-card ul li:before {
      position: static;
      margin-right: 5px;
    }
    
    .highlight-text {
      margin: 0 auto 10px;
    }
  }
  
  @media (max-width: 576px) {
    .instructor-card {
      padding: 15px;
    }
    
    .profile-img {
      width: 80%;
      height: 100%;
    }
    
    .highlight-text {
      font-size: 1.3rem;
    }
  }
  
  /* Additional Container Styling */
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .col-md-5 {
    width: 100%;
    max-width: 500px;
  }
  
  @media (max-width: 992px) {
    .col-md-5 {
      max-width: 100%;
    }
  }
  .page-header {
    padding: 2px 0;
    background: linear-gradient(135deg, #fff 0%, #ffeeee 100%);
    border-radius: 0 0 30px 30px;
   
  }
  .price-tag {
    background-color: #cc0000;
    color: white;
    border-radius: 50px;
    padding: 8px 15px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
  }
  .rating-stars {
    color: #ffd500;
    font-size: 20px;
  }
  .profile-img {
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  .main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
  }
  /* Medium screens (tablets) */
@media (max-width: 768px) {
    .main-title {
      font-size: 2rem;
    }
  }
  
  /* Small screens (mobiles) */
  @media (max-width: 480px) {
    .main-title {
      font-size: 1.5rem;
    }
}
  .subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  .benefits-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .benefit-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
  }
  .check-icon {
    color: #2e8b00;
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-button {
    background-color: #cc0000;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 15px 30px;
    border-radius: 10px;
    display: block;
    max-width: 700px;
    margin: 0 auto;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(204, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  .cta-button:hover {
    background-color: #b00000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(204, 0, 0, 0.4);
  }
  .strikethrough {
    text-decoration: line-through;
    opacity: 0.8;
  }   
  .cohort-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  .cohort-header {
    text-align: center;
    margin-bottom: 30px;
  }
  .cohort-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .cohort-header p {
    font-size: 18px;
    color: #555;
  }
  /* Cohort Section Styling */
:root {
    --primary: #e63946;
    --secondary: #f8d7da;
    --dark: #1d3557;
    --light: #f1faee;
    --accent: #ff6b6b;
    --text: #457b9d;
    --border-radius: 12px;
    --box-shadow: 0 6px 15px rgba(230, 57, 70, 0.1);
    --transition: all 0.3s ease;
  }
  
  .cohort-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Poppins', sans-serif;
  }
  
  .cohort-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .cohort-header h1 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .cohort-header p {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--secondary);
    border-radius: 30px;
    margin-top: 0.5rem;
  }
  
  .weeks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .final-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }
  
  .week-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
  }
  
  .week-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(230, 57, 70, 0.2);
  }
  
  .week-title {
    color: white;
    background-color: var(--primary);
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(230, 57, 70, 0.2);
  }
  
  .topic-tag {
    background-color: var(--light);
    color: var(--text);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: var(--transition);
    border-left: 3px solid var(--accent);
  }
  
  .topic-tag:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateX(5px);
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--primary), #f43f5e);
    color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }
  
  .info-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .cohort-header h1 {
      font-size: 2rem;
    }
    
    .cohort-header p {
      font-size: 1rem;
    }
    
    .weeks-grid, .final-row {
      grid-template-columns: 1fr;
    }
    
    .info-box {
      margin-top: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .cohort-header h1 {
      font-size: 1.7rem;
    }
    
    .week-title {
      font-size: 1.1rem;
      padding: 0.6rem 0.8rem;
    }
    
    .topic-tag {
      font-size: 0.9rem;
      padding: 0.5rem 0.8rem;
    }
    
    .info-text {
      font-size: 1rem;
    }
    
    .week-box {
      padding: 1.2rem;
    }
  }
  
  /* Animation for smooth loading */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .cohort-container {
    animation: fadeIn 0.8s ease forwards;
  }
  
  .week-box {
    animation: fadeIn 0.8s ease forwards;
    animation-delay: calc(0.1s * var(--i, 1));
    opacity: 0;
  }
  
  .week-box:nth-child(1) { --i: 1; }
  .week-box:nth-child(2) { --i: 2; }
  .week-box:nth-child(3) { --i: 3; }
  .week-box:nth-child(4) { --i: 4; }
  .week-box:nth-child(5) { --i: 5; }
  .info-box { --i: 6; }
  .topic-tag {
    display: inline-block;
    background-color: white;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 5px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  .info-box {
    background-color: #e8f5e9;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .info-text {
    font-size: 18px;
    line-height: 1.6;
  }
  .certificate-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .title-text {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  .certificate-frame {
    background-color: #4e1313;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  .certificate {
    background-color: white;
    border: 2px solid #cc0000;
    padding: 10px;
  }
  .certificate-content {
    position: relative;
    display: flex;
  }
  .certificate-main {
    flex: 7;
    padding: 20px;
    text-align: left;
  }
  .certificate-sidebar {
    flex: 3;
    background-color: #cc0000;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .logo {
    width: 80px;
    height: 80px;
    margin-bottom: -10px;
  }
  .cert-title {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0 0;
  }
  .cert-subtitle {
    font-size: 16px;
    margin: 5px 0 30px;
  }
  .completion-text {
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
  }
  .program-name {
    font-weight: bold;
    font-size: 16px;
  }
  .cert-features {
    margin: 20px 0;
  }
  .cert-features li {
    margin-bottom: 10px;
    text-align: left;
  }
  .signatures {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
  }
  .signature {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sign-img {
    width: 120px;
    height: 40px;
    margin-bottom: 5px;
    border-bottom: 1px solid #333;
  }
  .badge {
    width: 100px;
    height: 100px;
    margin: 10px auto;
    border-radius: 50%;
    border: 2px dotted #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .badge-logo {
    width: 60px;
    height: 60px;
  }
  .badge-text {
    font-size: 14px;
    margin: 5px 0;
  }
  .issue-date {
    font-size: 14px;
    margin-top: 10px;
  }
  .credential-link {
    font-size: 12px;
    color: #ccc;
    margin-top: 5px;
  }
  .impact-text {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
  }
  .cta-button {
    background-color: #cc0000;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 5px;
    display: inline-block;
    margin: 20px 0;
    text-decoration: none;
  }
  .deadline-text {
    font-size: 18px;
    margin: 15px 0;
  }
  .mandatory-text {
    font-size: 16px;
    color: #cc0000;
    font-weight: bold;
    margin: 15px 0;
  }
  .strikethrough {
    text-decoration: line-through;
  }
  .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 20px;
      }
      .header {
          text-align: center;
          margin-bottom: 50px;
      }
      h1 {
          font-size: 40px;
          font-weight: bold;
          color: #222;
      }
      .features {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          gap: 20px;
      }
      .feature-card {
          width: calc(50% - 20px);
          margin-bottom: 40px;
      }
      .feature-image {
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 4px 12px rgba(0,0,0,0.1);
          margin-bottom: 20px;
      }
      .feature-image img {
          width: 100%;
          height: auto;
          display: block;
      }
      .feature-title {
          font-size: 24px;
          font-weight: bold;
          margin-bottom: 15px;
          text-align: center;
      }
      .feature-description {
          font-size: 16px;
          line-height: 1.5;
          text-align: center;
      }
      .wave-decoration {
          height: 50px;
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25'%3E%3C/path%3E%3Cpath fill='%23ffffff' d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5'%3E%3C/path%3E%3Cpath fill='%23ffffff' d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' opacity='.75'%3E%3C/path%3E%3C/svg%3E");
          background-size: cover;
          margin-top: -1px;
      }
      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 20px;
      }
      .header {
          text-align: center;
          margin-bottom: 40px;
      }
      h1 {
          font-size: 40px;
          font-weight: bold;
          color: #222;
      }
      .job-listings {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
          margin-bottom: 20px;
      }
      .job-card {
          background-color: white;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 4px 12px rgba(0,0,0,0.1);
          padding: 15px;
      }
      .job-image {
          height: 200px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 15px;
          position: relative;
      }
      .job-image img {
          max-width: 90%;
          max-height: 90%;
          object-fit: contain;
      }
      .job-count {
          text-align: center;
          font-size: 20px;
          font-weight: bold;
          margin-top: 15px;
          margin-bottom: 60px;
      }
      .job-listings-row {
          margin-bottom: 40px;
      }
      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 40px 20px;
      }
      .header {
          text-align: center;
          margin-bottom: 60px;
      }
      h1 {
          font-size: 40px;
          font-weight: bold;
          color: #222;
      }
      .audience-categories {
          display: flex;
          justify-content: space-around;
          margin-bottom: 60px;
          flex-wrap: wrap;
      }
      .audience-category {
          text-align: center;
          flex: 1;
          min-width: 250px;
          margin: 0 15px 30px;
      }
      .audience-image {
          height: 180px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 20px;
      }
      .audience-image img {
          max-width: 100%;
          max-height: 100%;
      }
      .audience-title {
          font-size: 24px;
          font-weight: bold;
      }
      .cta-section {
          text-align: center;
          margin: 40px 0;
      }
      .cta-button {
          display: inline-block;
          background: linear-gradient(90deg, #9c0000 0%, #ff0000 100%);
          color: white;
          text-decoration: none;
          padding: 15px 25px;
          border-radius: 8px;
          font-size: 20px;
          font-weight: bold;
          margin-bottom: 20px;
          width: 80%;
          max-width: 760px;
          text-align: center;
      }
      .cta-text {
          font-size: 18px;
          margin-top: 15px;
      }

      /* Mobile Optimization */
     @media (max-width: 480px) {
    .cta-button {
        font-size: 15px;
        padding: 8px 15px;
        border-radius: 6px;
        width: 90%;
    }

    .cta-text {
        font-size: 15px;
    }
}
      .wave-decoration {
          height: 50px;
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25'%3E%3C/path%3E%3Cpath fill='%23ffffff' d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5'%3E%3C/path%3E%3Cpath fill='%23ffffff' d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' opacity='.75'%3E%3C/path%3E%3C/svg%3E");
          background-size: cover;
          margin-bottom: -20px;
      }

      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 40px 20px;
      }
      .header {
          text-align: center;
          margin-bottom: 30px;
      }
      h1 {
          font-size: 40px;
          font-weight: bold;
          color: #222;
      }
      .subheader {
          text-align: center;
          max-width: 800px;
          margin: 0 auto 50px;
          font-size: 20px;
          line-height: 1.5;
      }
      .salary-cards {
          display: flex;
          justify-content: center;
          gap: 20px;
          margin-bottom: 60px;
          flex-wrap: wrap;
      }
      .salary-card {
          background-color: white;
          border-radius: 10px;
          border: 1px solid #ddd;
          padding: 30px;
          text-align: center;
          flex: 1;
          min-width: 250px;
          max-width: 350px;
      }
      .salary-amount {
          font-size: 46px;
          font-weight: bold;
          margin-bottom: 20px;
      }
      .salary-description {
          font-size: 18px;
          line-height: 1.4;
      }
      .cta-section {
          text-align: center;
          margin: 40px 0;
      }
      .cta-button {
          display: inline-block;
          background: linear-gradient(90deg, #9c0000 0%, #ff0000 100%);
          color: white;
          text-decoration: none;
          padding: 15px 25px;
          border-radius: 8px;
          font-size: 20px;
          font-weight: bold;
          margin-bottom: 20px;
          width: 80%;
          max-width: 760px;
          text-align: center;
      }
      .cta-text {
          font-size: 18px;
          margin-top: 15px;
      }

      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 40px 20px;
      }
      .header {
          text-align: center;
          margin-bottom: 40px;
      }
      h1 {
          font-size: 32px;
          font-weight: bold;
          color: #222;
          max-width: 900px;
          margin: 0 auto 30px;
          line-height: 1.3;
      }
      .bonus-cards {
          display: flex;
          justify-content: center;
          gap: 20px;
          margin-bottom: 40px;
          flex-wrap: wrap;
      }
      .bonus-card {
          background-color: #1a1110;
          border-radius: 10px;
          padding: 25px;
          text-align: left;
          flex: 1;
          min-width: 250px;
          max-width: 320px;
          color: white;
      }
      .bonus-label {
          background-color: #ffcc00;
          color: black;
          font-weight: bold;
          padding: 8px 15px;
          border-radius: 20px;
          display: inline-block;
          margin-bottom: 15px;
      }
      .bonus-amount {
          font-size: 34px;
          font-weight: bold;
          margin-bottom: 15px;
      }
      .bonus-description {
          font-size: 16px;
          line-height: 1.4;
      }
      .countdown-header {
          text-align: center;
          margin: 40px 0 20px;
      }
      h2 {
          font-size: 32px;
          font-weight: bold;
          margin: 0;
          line-height: 1.3;
      }
      .subtitle {
          font-size: 18px;
          margin: 15px 0 30px;
          text-align: center;
      }
      .countdown {
          display: flex;
          justify-content: center;
          gap: 20px;
          margin-bottom: 30px;
      }
      .countdown-item {
          background-color: #000;
          color: white;
          border-radius: 10px;
          padding: 20px;
          text-align: center;
          min-width: 200px;
      }
      .countdown-number {
          font-size: 60px;
          font-weight: bold;
          color: #ff0000;
          margin-bottom: 5px;
      }
      .countdown-label {
          font-size: 18px;
      }
      .cta-section {
          text-align: center;
          margin: 40px 0;
      }
      .pricing-text {
          font-size: 18px;
          margin-bottom: 20px;
      }
      .cta-button {
          display: inline-block;
          background: linear-gradient(90deg, #9c0000 0%, #ff0000 100%);
          color: white;
          text-decoration: none;
          padding: 15px 25px;
          border-radius: 8px;
          font-size: 20px;
          font-weight: bold;
          margin-top: 20px;
          width: 80%;
          max-width: 600px;
          text-align: center;
      }


      .container-form {
          max-width: 1200px;
          margin: 0 auto;
          background-color: rgb(227, 218, 218);
          padding: 30px;
          border-radius: 8px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      .header {
          text-align: center;
          margin-bottom: 30px;
      }
      .header h1 {
          color: #e53e3e;
          margin-bottom: 10px;
      }
      .header p {
          color: #555;
          font-size: 16px;
      }
      .form-group {
          margin-bottom: 20px;
      }
      label {
          display: block;
          margin-bottom: 8px;
          font-weight: 600;
          color: #e53e3e;
      }
      input, select, textarea {
          width: 100%;
          padding: 10px;
          border: 1px solid #e2e8f0;
          border-radius: 4px;
          font-size: 16px;
      }
      input:focus, select:focus, textarea:focus {
          outline: none;
          border-color: #e53e3e;
          box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
      }
      .btn {
          background-color: #e53e3e;
          color: white;
          border: none;
          padding: 12px 24px;
          font-size: 16px;
          font-weight: 600;
          border-radius: 4px;
          cursor: pointer;
          transition: background-color 0.3s;
          width: 100%;
      }
      .btn:hover {
          background-color: #c53030;
      }
      .required {
          color: #e53e3e;
      }
      .error-message {
          color: #e53e3e;
          font-size: 14px;
          margin-top: 5px;
          display: none;
      }
/*  */
.ai-cohort-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .ai-cohort-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(210, 40, 40, 0.2);
  }
  
  .ai-cohort-heading {
    color: var(--white);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .ai-cohort-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--white);
    border-radius: 2px;
  }
  
  .ai-cohort-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .ai-cohort-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 57, 70, 0.1);
    position: relative;
  }
  
  .ai-cohort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
  }
  
  .ai-cohort-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  
  .ai-cohort-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .ai-cohort-card:hover .ai-cohort-img {
    transform: scale(1.05);
  }
  
  .ai-cohort-card-title {
    color: var(--dark-red);
    padding: 1.2rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    position: relative;
  }
  
  .ai-cohort-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px;
  }
  
  .ai-cohort-card-desc {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
  }
  
  /* Red hover effect */
  .ai-cohort-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .ai-cohort-card:hover::before {
    transform: scaleX(1);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .ai-cohort-feature-grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .ai-cohort-heading {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .ai-cohort-feature-grid {
      grid-template-columns: 1fr;
    }
    
    .ai-cohort-heading {
      font-size: 1.8rem;
    }
    
    .ai-cohort-card {
      max-width: 100%;
    }
    
    .ai-cohort-container {
      padding: 1rem;
    }
  }
  
 
 /* Base responsive setup */

/* Container responsiveness */
.container, .container-form, .cohort-container, .benefits-container, .certificate-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

@media (max-width: 768px) {
  .container, .container-form, .cohort-container, .benefits-container, .certificate-container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .container, .container-form, .cohort-container, .benefits-container, .certificate-container {
    padding: 10px;
  }
}

/* Typography responsiveness */
h1, .main-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 1.3;
}

.subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 30px;
}

.highlight-text {
  color: #e41e3f;
  font-weight: bold;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

/* Button responsiveness */
.cta-button, .btn-yellow, .btn {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 20px auto;
  padding: clamp(10px, 3vw, 15px) clamp(15px, 4vw, 30px);
  font-size: clamp(0.9rem, 3vw, 1.2rem);
  text-align: center;
  border-radius: 8px;
}

/* Grid system improved */
.benefits-grid, .job-listings, .audience-categories, .salary-cards, .bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.weeks-grid, .final-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

@media (max-width: 576px) {
  .benefits-grid, .job-listings, .audience-categories, .salary-cards, .bonus-cards,
  .weeks-grid, .final-row {
    grid-template-columns: 1fr;
  }
}

/* Card responsiveness */
 .course-box{
  max-width: 90%;
  padding: clamp(15px, 3vw, 30px);
  margin-bottom: 20px;
  border-radius: 10px;
}

/* Flex container responsiveness */


@media (max-width: 768px) {
  .instructor-card .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Certificate responsiveness */
.certificate-content {
  display: flex;
  flex-direction: row;
}

@media (max-width: 768px) {
  .certificate-content {
    flex-direction: column;
  }
  
  .certificate-sidebar {
    margin-top: 20px;
  }
  
  .certificate-container {
    width: 95%;
  }
}

/* Image responsiveness */
.profile-img, img {
  max-width: 100%;
  height: auto;
}

/* Countdown responsiveness */
.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.countdown-item {
  min-width: unset;
  width: 100%;
  max-width: 200px;
  flex: 1 1 140px;
}

.countdown-number {
  font-size: clamp(2rem, 5vw, 3.75rem);
}

.countdown-label {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
}

/* Form responsiveness */
input, select, textarea {
  width: 100%;
  padding: clamp(8px, 2vw, 10px);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Feature cards */
.feature-card {
  width: 100%;
}

@media (min-width: 768px) {
  .feature-card {
    width: calc(50% - 20px);
  }
}

/* Audience category */
.audience-category {
  min-width: unset;
  margin: 0 0 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .audience-category {
    min-width: 250px;
    margin: 0 15px 30px;
  }
}

/* Topic tags responsiveness */
.topic-tag {
  display: inline-block;
  padding: clamp(5px, 2vw, 8px) clamp(8px, 2vw, 12px);
  margin: 5px;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

/* Week title responsiveness */
.week-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: clamp(0.5rem, 2vw, 0.7rem) clamp(0.8rem, 2vw, 1rem);
}

/* AI Cohort responsiveness */
.ai-cohort-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.ai-cohort-heading {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.ai-cohort-card-title {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
}

/* Specific mobile adjustments */
@media (max-width: 480px) {
  .cta-button {
    font-size: 15px;
    padding: 8px 15px;
    width: 100%;
  }
  
  .cta-text {
    font-size: 15px;
  }
  
  .salary-amount {
    font-size: clamp(2rem, 8vw, 2.875rem);
  }
  
  .bonus-amount {
    font-size: clamp(1.5rem, 6vw, 2.125rem);
  }
  
  .cert-title {
    font-size: clamp(1.5rem, 7vw, 3rem);
  }
  
  .signatures {
    flex-direction: column;
    align-items: center;
  }
  
  .signature {
    margin-bottom: 20px;
  }
}