  
    
      .jseo-container * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Poppins', sans-serif;
      }
      
      .jseo-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 20px;
          position: relative;
          overflow-x: hidden;
      }
      
      .banner { height: 45vh;
          background: linear-gradient(135deg, #39cfca 0%, #2a9c98 100%);
          padding: 40px 20px;
          margin-bottom: 30px;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(57, 207, 202, 0.2);
          text-align: center;
          position: relative;
          overflow: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .banner::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.1)" x="0" y="0" width="100" height="100"/></svg>') repeat;
          opacity: 0.1;
      }

      .banner h2 {
          color: white;
          font-size: 2.2rem;
          font-weight: 600;
          margin: 0;
          text-shadow: 0 2px 4px rgba(0,0,0,0.1);
          position: relative;
      }

      /*@media (max-width: 768px) {*/
      /*    .banner {*/
      /*        padding: 30px 15px;*/
      /*        margin-bottom: 20px;*/
      /*    }*/
          
      /*    .banner h2 {*/
      /*        font-size: 1.8rem;*/
      /*    }*/
      /*}*/
      
      .jseo-header {
          text-align: center;
          margin-bottom: 40px;
          position: relative;
      }
      
      .jseo-header__logo {
          margin-bottom: 15px;
          filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
          transition: transform 0.5s ease;
      }
      
      .jseo-header__title {
          font-size: 2.5rem;
          color: #2a3b4c;
          margin-bottom: 10px;
          background: linear-gradient(90deg, #39cfca, #2a9c98);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          position: relative;
      }
      
      .jseo-header__subtitle {
          font-size: 1.2rem;
          color: #5a6a7a;
          max-width: 800px;
          margin: 0 auto;
          line-height: 1.6;
      }
      
      .jseo-content {
          display: grid;
          gap: 30px;
          position: relative;
      }
      
      .jseo-section {
          background: rgba(255, 255, 255, 0.9);
          border-radius: 15px;
          padding: 30px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          position: relative;
          overflow: hidden;
      }
      
      .jseo-section:hover {
          transform: translateY(-5px);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      }
      
      .jseo-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 5px;
          height: 100%;
          background: linear-gradient(to bottom, #39cfca, #2a9c98);
          border-radius: 5px 0 0 5px;
      }
      
      .jseo-section__icon {
          width: 60px;
          height: 60px;
          background: linear-gradient(135deg, #39cfca 0%, #2a9c98 100%);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 20px;
          color: white;
          font-size: 1.5rem;
          position: relative;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(42, 59, 76, 0.3);
      }
      
      .jseo-section__title {
          font-size: 1.8rem;
          color: #2a3b4c;
          margin-bottom: 15px;
          position: relative;
          display: inline-block;
      }
      
      .jseo-section__title::after {
          content: '';
          position: absolute;
          width: 0;
          height: 3px;
          bottom: -5px;
          left: 0;
          background: linear-gradient(90deg, #39cfca, #2a9c98);
          transition: width 0.3s ease;
      }
      
      .jseo-section:hover .jseo-section__title::after {
          width: 100%;
      }
      
      .jseo-section__content {
          color: #5a6a7a;
          line-height: 1.7;
          font-size: 1.05rem;
      }
      
      .jseo-list {
          list-style: none;
          margin: 20px 0;
      }
      
      .jseo-list__item {
          margin-bottom: 15px;
          padding-left: 30px;
          position: relative;
      }
      
      .jseo-list__item::before {
          content: '✅';
          position: absolute;
          left: 0;
          color: #39cfca;
          font-weight: bold;
      }
      
      .jseo-career-card {
          background: white;
          border-radius: 10px;
          padding: 25px;
          margin-bottom: 20px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;
          border-left: 4px solid #39cfca;
      }
      
      .jseo-career-card:hover {
          transform: translateY(-5px) scale(1.01);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          border-left: 4px solid #ff6b6b;
      }
      
      .jseo-career-card__title {
          font-size: 1.4rem;
          color: #2a3b4c;
          margin-bottom: 10px;
          display: flex;
          align-items: center;
          font-weight: 600;
      }
      
      .jseo-career-card__title i {
          margin-right: 10px;
          color: #39cfca;
          transition: all 0.3s ease;
      }
      
      .jseo-career-card:hover .jseo-career-card__title i {
          transform: rotate(10deg);
          color: #ff6b6b;
      }
      
      .jseo-career-card__role {
          font-weight: 500;
          color: #39cfca;
          margin-bottom: 15px;
          position: relative;
          display: inline-block;
          padding-bottom: 5px;
      }
      
      .jseo-career-card__role::after {
          content: '';
          position: absolute;
          width: 50%;
          height: 2px;
          bottom: 0;
          left: 0;
          background: #39cfca;
          transition: width 0.3s ease;
      }
      
      .jseo-career-card:hover .jseo-career-card__role::after {
          width: 100%;
      }
      
      .jseo-career-card__details {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 15px;
          margin-top: 15px;
      }
      
      .jseo-career-card__detail {
          display: flex;
          align-items: center;
      }
      
      .jseo-career-card__detail i {
          color: #39cfca;
          margin-right: 8px;
          font-size: 0.9rem;
      }
      
      .jseo-career-card__skills {
          margin: 15px 0;
      }
      
      .jseo-career-card__skill-title {
          font-weight: 600;
          color: #2a3b4c;
          margin-bottom: 8px;
      }
      
      .jseo-skill-tag {
          display: inline-block;
          background: #f0f4fa;
          padding: 5px 12px;
          border-radius: 20px;
          font-size: 0.9rem;
          color: #39cfca;
          margin-right: 8px;
          margin-bottom: 8px;
          transition: all 0.3s ease;
      }
      
      .jseo-skill-tag:hover {
          background: #39cfca;
          color: white;
          transform: translateY(-3px);
          box-shadow: 0 3px 10px rgba(74, 100, 145, 0.3);
      }
      
      .jseo-cta {
          background: linear-gradient(135deg, #39cfca 0%, #2a9c98 100%);
          color: white;
          padding: 40px;
          border-radius: 15px;
          text-align: center;
          margin-top: 50px;
          position: relative;
          overflow: hidden;
          box-shadow: 0 15px 35px rgba(42, 59, 76, 0.25);
      }
      
      .jseo-cta__title {
          font-size: 2rem;
          margin-bottom: 15px;
          position: relative;
          z-index: 1;
      }
      
      .jseo-cta__text {
          font-size: 1.1rem;
          margin-bottom: 25px;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
          line-height: 1.6;
          position: relative;
          z-index: 1;
      }
      
      .jseo-btn {
          display: inline-block;
          background: white;
          color: #2a3b4c;
          padding: 12px 30px;
          border-radius: 30px;
          font-weight: 600;
          text-decoration: none;
          transition: all 0.3s ease;
          border: 2px solid white;
          position: relative;
          z-index: 1;
          overflow: hidden;
      }
      
      .jseo-btn::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
          transition: all 0.4s ease;
          z-index: -1;
      }
      
      .jseo-btn:hover {
          color: white;
          background: transparent;
          transform: translateY(-5px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }
      
      .jseo-btn:hover::before {
          left: 100%;
      }
      
      .jseo-footer {
          text-align: center;
          margin-top: 50px;
          padding-top: 30px;
          border-top: 1px solid rgba(90, 106, 122, 0.1);
          color: #5a6a7a;
      }
      
      .jseo-footer__social {
          margin: 20px 0;
      }
      
      .jseo-social-icon {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          background: white;
          margin: 0 5px;
          border-radius: 50%;
          color: #39cfca;
          font-size: 1.2rem;
          transition: all 0.3s ease;
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      }
      
      .jseo-social-icon:hover {
          background: #39cfca;
          color: white;
          transform: translateY(-5px);
          box-shadow: 0 5px 15px rgba(74, 100, 145, 0.3);
      }
      
      /*@media (max-width: 992px) {*/
      /*    .jseo-header__title {*/
      /*        font-size: 2rem;*/
      /*    }*/
          
      /*    .jseo-career-card__details {*/
      /*        grid-template-columns: 1fr;*/
      /*    }*/
      /*}*/
      
      /*@media (max-width: 768px) {*/
      /*    .jseo-container {*/
      /*        padding: 15px;*/
      /*    }*/
          
      /*    .jseo-header__title {*/
      /*        font-size: 1.8rem;*/
      /*    }*/
          
      /*    .jseo-section {*/
      /*        padding: 20px;*/
      /*    }*/
          
      /*    .jseo-cta {*/
      /*        padding: 30px 20px;*/
      /*    }*/
      /*}*/
      
      /*@media (max-width: 576px) {*/
      /*    .jseo-header__title {*/
      /*        font-size: 1.5rem;*/
      /*    }*/
          
      /*    .jseo-header__subtitle {*/
      /*        font-size: 1rem;*/
      /*    }*/
          
      /*    .jseo-section__title {*/
      /*        font-size: 1.5rem;*/
      /*    }*/
      /*}*/
  
 
      .copt-container * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      .copt-section {
        font-family: 'Poppins', sans-serif;
        padding: 4rem 2rem;
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
        position: relative;
        overflow: hidden;
      }
      
      .copt-section__background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.05;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMzljZmNhIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDBoMjB2MjBIMHoiLz48cGF0aCBvcGFjaXR5PSIuNSIgZD0iTTQwIDBoMjB2MjBINDB6Ii8+PHBhdGggb3BhY2l0eT0iLjciIGQ9Ik0yMCAyMGgyMHYyMEgyMHoiLz48cGF0aCBvcGFjaXR5PSIuMiIgZD0iTTAgNDBoMjB2MjBIMHoiLz48cGF0aCBvcGFjaXR5PSIuMyIgZD0iTTQwIDQwaDIwdjIwSDQweiIvPjwvZz48L3N2Zz4=');
        z-index: 0;
      }
      
      .copt-section__content {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .copt-section__header {
        text-align: center;
        margin-bottom: 4rem;
      }
      
      .copt-section__icon {
        background: #39cfca;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 20px rgba(57, 207, 202, 0.3);
      }
      
      .copt-section__icon i {
        font-size: 2.5rem;
        color: white;
      }
      
      .copt-section__title {
        color: #333;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
      }
      
      .copt-section__title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #39cfca;
        border-radius: 2px;
      }
      
      .copt-cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2rem;
      }
      
      .copt-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: relative;
        height: 100%;
      }
      
      .copt-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #39cfca;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      
      .copt-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(57, 207, 202, 0.2);
      }
      
      .copt-card:hover::before {
        transform: scaleX(1);
      }
      
      .copt-card:hover .copt-card__image img {
        transform: scale(1.05);
      }
      
      .copt-card__image {
        height: 180px;
        overflow: hidden;
        position: relative;
      }
      
      .copt-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
      }
      
      .copt-card__content {
        padding: 1.5rem;
        position: relative;
      }
      
      .copt-card__title {
        color: #333;
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      
      .copt-card__title i {
        color: #39cfca;
        font-size: 1.2rem;
      }
      
      .copt-card__role {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        font-weight: 500;
      }
      
      .copt-card__skills {
        margin-bottom: 1.5rem;
      }
      
      .copt-card__skill-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: #555;
        margin-bottom: 0.5rem;
      }
      
      .copt-skill-tag {
        display: inline-block;
        background: rgba(57, 207, 202, 0.1);
        color: #39cfca;
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
        border-radius: 15px;
        margin: 0 0.3rem 0.5rem 0;
        transition: all 0.3s ease;
      }
      
      .copt-skill-tag:hover {
        background: #39cfca;
        color: white;
        transform: translateY(-3px);
      }
      
      .copt-card__details {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1rem;
      }
      
      .copt-card__detail {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.9rem;
        color: #555;
      }
      
      .copt-card__detail i {
        color: #39cfca;
      }
      
      .copt-card__footer {
        font-size: 0.9rem;
        color: #777;
        font-style: italic;
      }
      
      /*@media (max-width: 768px) {*/
      /*  .copt-cards-container {*/
      /*    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));*/
      /*  }*/
        
      /*  .copt-section__title {*/
      /*    font-size: 2rem;*/
      /*  }*/
      /*}*/
    
    
    
    
    
    
    
    /* Base responsive media queries */

/* Extra large devices (large desktops) */
@media (max-width: 1200px) {
  .jseo-container {
    max-width: 992px;
    padding: 15px;
  }
  
  .copt-cards-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* Large devices (desktops) */
@media (max-width: 992px) {
  .jseo-container {
    max-width: 768px;
  }
  
  .jseo-header__title {
    font-size: 2rem;
  }
  
  .jseo-career-card__details {
    grid-template-columns: 1fr;
  }
  
  .copt-section__title {
    font-size: 2rem;
  }
  
  .banner {
    height: 40vh;
  }
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
  .jseo-container {
    max-width: 100%;
    padding: 15px;
  }
  
  .jseo-header__title {
    font-size: 1.8rem;
  }
  
  .jseo-header__subtitle {
    font-size: 1.1rem;
  }
  
  .jseo-section {
    padding: 20px;
  }
  
  .jseo-section__title {
    font-size: 1.6rem;
  }
  
  .jseo-section__content {
    font-size: 1rem;
  }
  
  .jseo-cta {
    padding: 30px 20px;
  }
  
  .jseo-cta__title {
    font-size: 1.8rem;
  }
  
  .jseo-cta__text {
    font-size: 1rem;
  }
  
  .banner {
    height: 35vh;
    padding: 30px 15px;
    margin-bottom: 20px;
  }
  
  .banner h2 {
    font-size: 1.8rem;
  }
  
  .copt-cards-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .copt-section {
    padding: 3rem 1.5rem;
  }
  
  .copt-section__icon {
    width: 70px;
    height: 70px;
  }
  
  .copt-section__icon i {
    font-size: 2rem;
  }
}

/* Small devices (landscape phones) */
@media (max-width: 576px) {
  .jseo-header__title {
    font-size: 1.5rem;
  }
  
  .jseo-header__subtitle {
    font-size: 1rem;
  }
  
  .jseo-section__title {
    font-size: 1.5rem;
  }
  
  .jseo-section__icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .jseo-career-card__title {
    font-size: 1.3rem;
  }
  
  .jseo-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  
  .banner {
    height: 30vh;
    padding: 25px 10px;
  }
  
  .banner h2 {
    font-size: 1.6rem;
  }
  
  .copt-section__title {
    font-size: 1.8rem;
  }
  
  .copt-card {
    border-radius: 12px;
  }
  
  .copt-card__title {
    font-size: 1.3rem;
  }
  
  .copt-cards-container {
    grid-template-columns: 1fr;
  }
  
  .copt-card__image {
    height: 160px;
  }
}

/* Extra small devices (portrait phones) */
@media (max-width: 480px) {
  .jseo-container {
    padding: 10px;
  }
  
  .jseo-header__title {
    font-size: 1.4rem;
  }
  
  .jseo-section {
    padding: 15px;
  }
  
  .jseo-section__title {
    font-size: 1.3rem;
  }
  
  .jseo-section__content {
    font-size: 0.95rem;
  }
  
  .jseo-cta {
    padding: 25px 15px;
  }
  
  .jseo-cta__title {
    font-size: 1.5rem;
  }
  
  .jseo-career-card {
    padding: 20px;
  }
  
  .jseo-career-card__title {
    font-size: 1.2rem;
  }
  
  .jseo-social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .banner {
    height: 25vh;
    border-radius: 10px;
  }
  
  .banner h2 {
    font-size: 1.4rem;
  }
  
  .copt-section {
    padding: 2.5rem 1rem;
  }
  
  .copt-section__title {
    font-size: 1.6rem;
  }
  
  .copt-section__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .copt-section__icon i {
    font-size: 1.8rem;
  }
  
  .copt-card__content {
    padding: 1.2rem;
  }
}

/* For very small devices */
@media (max-width: 380px) {
  .jseo-header__title {
    font-size: 1.3rem;
  }
  
  .jseo-section__title {
    font-size: 1.2rem;
  }
  
  .jseo-cta__title {
    font-size: 1.4rem;
  }
  
  .jseo-career-card__title {
    font-size: 1.1rem;
  }
  
  .jseo-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .banner {
    height: 20vh;
  }
  
  .banner h2 {
    font-size: 1.3rem;
  }
  
  .copt-section__title {
    font-size: 1.5rem;
  }
  
  .copt-card__title {
    font-size: 1.2rem;
  }
  
  .copt-skill-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }
}

/* Fix for iPhone 5/SE and similar small devices */
@media (max-width: 320px) {
  .jseo-header__title {
    font-size: 1.2rem;
  }
  
  .jseo-header__subtitle {
    font-size: 0.9rem;
  }
  
  .jseo-section__title {
    font-size: 1.1rem;
  }
  
  .jseo-section__content {
    font-size: 0.9rem;
  }
  
  .jseo-cta__title {
    font-size: 1.3rem;
  }
  
  .jseo-cta__text {
    font-size: 0.9rem;
  }
  
  .banner h2 {
    font-size: 1.2rem;
  }
  
  .copt-section__title {
    font-size: 1.4rem;
  }
  
  .copt-card__title {
    font-size: 1.1rem;
  }
  
  .copt-card__role {
    font-size: 0.85rem;
  }
  
  .copt-card__detail {
    font-size: 0.8rem;
  }
}

/* Specific orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .banner {
    height: 70vh;
  }
  
  .jseo-header {
    margin-bottom: 20px;
  }
}

/* Fix for device pixel ratio to handle high-density screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .jseo-section,
  .copt-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  }
}

/* Target iPad specifically */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .jseo-container {
    max-width: 95%;
  }
  
  .banner {
    height: 30vh;
  }
}

/* Target iPad Pro specifically */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {
  .jseo-container {
    max-width: 95%;
  }
}