 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
      color: #333;
      line-height: 1.6;
    }

    /* Main Content */
    .container1 {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1.5rem;
      display: flex;
      gap: 2rem;
    }

    .left-column1 {
      flex: 2;
    }

    .right-column1 {
      flex: 1;
    }

    /* Card Styles */
    .card1 {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      padding: 1.8rem;
      margin-bottom: 1.8rem;
      border: none;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card1:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .card-title1 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1.2rem;
      color: #222;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid #f0f0f0;
    }

    .card-title1 i {
      color: #00B43D;
    }

    /* Job Details Section */
    .job-header1 {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 1.8rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .job-title1 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #222;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .job-meta1 {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .job-meta1 span {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .salary1 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #00B43D;
      background: #f0f9f0;
      padding: 0.5rem 1rem;
      border-radius: 8px;
    }

    .job-details-grid1 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-bottom: 1.8rem;
    }

    .detail-item1 {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      padding: 0.8rem;
      border-radius: 8px;
      transition: background-color 0.3s;
    }

    .detail-item1:hover {
      background-color: #f9f9f9;
    }

    .detail-icon1 {
      width: 42px;
      height: 42px;
      background-color: #f0f9f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00B43D;
      flex-shrink: 0;
    }

    .detail-label1 {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 0.2rem;
    }

    .detail-value1 {
      font-weight: 500;
      color: #333;
    }

    .job-actions1 {
      display: flex;
      gap: 1rem;
      margin-top: 1.8rem;
      flex-wrap: wrap;
    }

    .btn1 {
      padding: 0.7rem 1.4rem;
      border-radius: 6px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.95rem;
      border: none;
    }

    .btn-primary1 {
      background-color: #00B43D;
      color: white;
    }

    .btn-primary1:hover {
      background-color: #009933;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 180, 61, 0.2);
    }

    .btn-outline1 {
      background-color: transparent;
      border: 1px solid #ddd;
      color: #666;
    }

    .btn-outline1:hover {
      background-color: #f5f5f5;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    /* Job Description */
    .job-description1 p {
      margin-bottom: 1.2rem;
      color: #555;
      line-height: 1.7;
    }

    /* Benefits Section */
    .benefits-list1 {
      list-style: none;
    }

    .benefits-list1 li {
      margin-bottom: 0.9rem;
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
      padding: 0.5rem 0;
    }

    .benefits-list1 i {
      color: #00B43D;
      margin-top: 0.2rem;
      flex-shrink: 0;
    }

    /* Skills Section */
    .skills-container1 {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .skill-tag1 {
      background-color: #f0f9f0;
      color: #00B43D;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.3s;
      border: 1px solid #e0f0e0;
    }

    .skill-tag1:hover {
      background-color: #00B43D;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 180, 61, 0.2);
    }

    /* Company Overview */
    .company-header1 {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 1.2rem;
    }

    .company-logo1 {
      width: 70px;
      height: 70px;
      background-color: #f0f9f0;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #00B43D;
      flex-shrink: 0;
    }

    .company-name1 {
      font-weight: 600;
      font-size: 1.2rem;
      color: #222;
    }

    .company-location1 {
      color: #666;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.3rem;
    }

    .company-jobs1 {
      background-color: #f8f8f8;
      padding: 0.9rem;
      border-radius: 8px;
      margin: 1.2rem 0;
      font-size: 0.9rem;
      border-left: 4px solid #00B43D;
    }

    .company-jobs1 strong {
      color: #00B43D;
    }

    .company-description1 {
      color: #555;
      margin-bottom: 1.2rem;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .read-more1 {
      color: #00B43D;
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.25rem;
      transition: all 0.3s;
    }

    .read-more1:hover {
      text-decoration: underline;
      gap: 0.5rem;
    }

    /* Map Section */
    .map-container1 {
      height: 220px;
      background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
      border-radius: 10px;
      overflow: hidden;
      margin-top: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      position: relative;
      border: 1px solid #eee;
    }

    .map-overlay1 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 180, 61, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .map-container1:hover .map-overlay1 {
      opacity: 1;
    }

    .map-btn1 {
      background: #00B43D;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s;
    }

    .map-btn1:hover {
      background: #009933;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 180, 61, 0.2);
    }

    /* Related Jobs */
    .related-job1 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem;
      border-bottom: 1px solid #f0f0f0;
      transition: background-color 0.3s;
      border-radius: 8px;
    }

    .related-job1:hover {
      background-color: #f9f9f9;
    }

    .related-job1:last-child {
      border-bottom: none;
    }

    .related-job-title1 {
      font-weight: 500;
      margin-bottom: 0.3rem;
      color: #333;
    }

    .related-job-meta1 {
      font-size: 0.85rem;
      color: #666;
    }

    .related-job-salary1 {
      color: #00B43D;
      font-weight: 600;
    }

    /* Application Progress */
    .progress-container1 {
      margin: 1.8rem 0;
    }

    .progress-bar1 {
      height: 8px;
      background-color: #f0f0f0;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 0.6rem;
    }

    .progress-fill1 {
      height: 100%;
      background: linear-gradient(90deg, #00B43D, #4cd964);
      width: 75%; /* Example progress */
      border-radius: 4px;
    }

    .progress-text1 {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: #666;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .container1 {
        flex-direction: column;
      }
      
      .job-details-grid1 {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .container1 {
        padding: 0 1rem;
        margin-top: 1rem;
      }
      
      .job-header1 {
        flex-direction: column;
      }
      
      .job-actions1 {
        flex-direction: column;
      }
      
      .btn1 {
        width: 100%;
        justify-content: center;
      }
      
      .card1 {
        padding: 1.4rem;
      }
      
      .job-title1 {
        font-size: 1.5rem;
      }
      
      .salary1 {
        align-self: flex-start;
      }
    }

    @media (max-width: 576px) {
      .container1 {
        padding: 0 0.8rem;
      }
      
      .card1 {
        padding: 1.2rem;
        margin-bottom: 1.4rem;
      }

      .job-title1 {
        font-size: 1.4rem;
      }
      
      .job-meta1 {
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .company-header1 {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
      }
    }