.page3 {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 20px;
    margin: 24px auto;
    padding: 40px;
    background: #FDF6E3;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
}


.internships {
    font-weight: bold;
    font-size: 32px;
    color: #2E2C2F;
    margin-bottom: 10px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.2);
}

.work-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    margin-top: 0px;
}

.work-item {
    background: #EDE7D8;
    padding: 20px;
    border-radius: 6px;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.work-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: #2E2C2F;
    margin-bottom: 5px;
}

.job-role {
    font-size: 16px;
    color: #E7A977;
    font-weight: normal;
}

.date-badge {
    background: #A3B18A;
    color: #FDF6E3;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.work-description {
    margin-top: 15px;
}

.work-description ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.work-description li {
    padding-left: 25px;
    list-style: none;
    margin-bottom: 10px;
    color: rgba(46, 44, 47, 0.8);
    line-height: 1.6;
    position: relative;
    font-size: 14px;
}

.work-description li::before {
    content: '▸';
    position: absolute;
    left: 5px;
    color: #E7A977;
    font-size: 16px;
    font-weight: bold;
}

.highlight {
    color: #2E2C2F;
    font-weight: bold;
}

.stamp {
    display: inline-block;
    background: #E7A977;
    color: #2E2C2F;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
}