       body {
            margin: 0;
            padding: 0;
            background: #ffffff;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
        }
        
        header {
           font-family: 'Poppins', sans-serif;
           display: flex;
           align-items: center;
           justify-content: space-between;
           background-color: #fffcfd;
           padding: 15px 30px;
        } 

        header .logo img {
          width: 120px;
          height: auto;
        }

        nav ul {
            list-style-type: none;
            display: flex;
        }

         nav ul li {
            margin-left: 20px;
         }

         nav ul li a {
            color: #000000;
            padding: 10px;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
         }

         nav ul li a:hover {
            background-color: #f2d6ce;
            color: #333;
         }
         
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 20px #9ca192;
        }
        
        h2{
            color: #562a2a;
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
        }
        
        h3{
            color: #562a2a;
            font-family: 'Poppins', sans-serif;
            font-size: 25px;
        }
        
        h2, h3 {
            font-weight: bold;
        }
        
        p {
            color: #562a2a;
            font-family: 'Poppins', sans-serif;
            font-size: 17px;
        }
       
        .career-card {
            background: #ffffff;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
        }
        
       .main-btn {
           padding: 12px 20px;
           font-family: 'Poppins', sans-serif;
           background-color: #cd5c5c;
           color: white;
           font-size: 18px;
           border-radius: 5px;
           text-decoration: none; 
           margin: 0 auto;
       }

       .button {
           font-family: 'Poppins', sans-serif;
           padding: 6px 10px;
           background-color: #cd5c5c;
           color: white;
           font-size: 14px;
           border-radius: 5px;
           text-decoration: none; 
           margin: 0 auto;

       }
       
       .progress-container {
           width: 100%;
           background-color: #eee;
           border-radius: 20px;
           margin: 10px auto;
           overflow: hidden;
        }

        .progress-bar {
           font-family: 'Poppins', sans-serif;
           height: 25px;
           background-color: #cd5c5c;
           text-align: center;
           line-height: 30px;
           color: white;
           font-weight: bold;
           width: 0;
           animation: fillBar 1s forwards;
        }

        @keyframes fillBar {
          to {
            width: var(--bar-width);
          }
        }

        .pdf_button {
           font-family: 'Poppins', sans-serif;
           padding: 4px 6px;
           background-color:#cd5c5c;
           color: rgb(255, 255, 255);
           font-size: 17px;
           border-radius: 10px;
           text-decoration: none; 
           border-right: 4px solid #cd5c5c;
           border-left: 4px solid #cd5c5c;
           border-top: 4px solid #cd5c5c;
           border-bottom: 4px solid #cd5c5c;
           /*#ad95a6;*/
        }

        .feedback-icons {
          display: flex;
          gap: 1px;
          margin-top: 1px;
          justify-content: flex-end;
          align-items: center;
        }

        .feedback {
          background-color: #ffffff00;
          border-right: 1px solid #ffffff00;
          border-left: 1px solid #ffffff00;
          border-top: 1px solid #ffffff00;
          border-bottom: 1px solid #ffffff00;
        }

        .feedback.submitted {
          opacity: 0.6;
          cursor: not-allowed;
        }

        .icon {
          width: 24px;
          height: 24px;
          cursor: pointer;
        }

        icon:hover {
          opacity: 0.7;
          transform: scale(1.05);
        }

        .footer {
          display: flex;
          gap: 20px;
          justify-content: flex-start;
          align-items: center;
        }

        /*.experience-rating {
          display: flex;
          gap: 8px;
          font-size: 32px;
          color: #ccc;
          cursor: pointer;
        }

        .star:hover,
        .star.hovered,
        .star.selected {
          color: gold;
        }*/

        .icon_download {
          width: 70px;
          height: 60px;
          cursor: pointer;
        } 

    @media print {

      .progress-container {
            display: none;
          }

      .progress-bar {
            display: none;
          }

      .pdf_button {
            display: none;
          }
   
      .main-btn {
            display: none;
          }
          

      .feedback-icons {
            display: none;
        }

      .icon {
            display: none;
      }
      
      .container {
            box-shadow: none;
      }

      .footer {
          display: none;
        } 

    }

      @media screen and (max-width: 768px) {
            
        .logo img {
            width: 100px;
        }
              
        h2{
            font-size: 18px;
        }
        h3{
            font-size: 16px;
        }
        p {
            font-size: 12px;
        }
        
        .container {
            max-width: 600px;
            height: 900px;
            margin: 10px auto;
            padding: 10px;
            box-shadow: none;
        }
        
        .progress-bar {
           font-size: 15px;
        }
        
        .button {
           padding: 2px 3px;
           font-size: 2px;
       }
        
        .icon {
          width: 20px;
          height: 20px;
        }
        
        .icon_download {
          width: 40px;
          height: 30px;
          font-size: 15px;
        } 
      }        