body {
      font-family: Arial, sans-serif;
      background: #f7f8fc;
      margin: 0;
      padding: 0;
    }
.container {
    max-width: 1100px;
    width: 100%;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 24px;
    background: #e6f0ff; /* default, change per card */
}

.card h3 {
    font-size: 1.2rem;
    margin: 0 0 8px;
    font-weight: 500;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Custom colors per card */
.card.health .icon { background: #e8f3ff; }
.card.esops .icon { background: #ffeddc; }
.card.gadgets .icon { background: #dbf8f5; }
.card.outings .icon { background: #f2eaff; }



.container-second {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    gap: 20px;
}

.sidebar {
    flex: 1;
    max-width: 225px;
    background: #fff;
    padding: 20px;
    /* border-radius: 12px;
    box-shadow: 0 0 8px rgb(0 0 0 / 24%); */
    height: fit-content;
    border-right: 1px solid #00000029;
    border-radius: 0px;
}

.sidebar h3 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}

.sidebar label {
    margin-bottom: 30px !important;
    display: block;
    margin: 10px 0;
    font-size: 15px;
    cursor: pointer;
}

.job-section {
    flex: 3;
    min-width: 300px;
}

.job-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.job-section p {
    margin-bottom: 25px;
    color: #555;
    font-size: 15px;
}

.job-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 8px rgb(0 0 0 / 27%);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.job-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 500;
}

.job-info p {
    margin: 2px 0;
    font-size: 14px;
    color: #333;
}

.view-btn {
    background: #28a745;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s;
}

.view-btn:hover {
    background: #218838;
}

/* Responsive */
@media (max-width: 900px) {
    .container-second {
    flex-direction: column;
    }
    .sidebar {
    max-width: 100%;
    }
}