/* Career Section */
.career-section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(26, 58, 46, 0.08);
    border-left: 4px solid #1a3a2e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26, 58, 46, 0.15);
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.company-header:hover {
    background-color: rgba(26, 58, 46, 0.02);
    border-radius: 8px;
    margin: -0.5rem;
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3a2e;
    letter-spacing: -0.01em;
}

.collapse-indicator {
    font-size: 1.2rem;
    color: #1a3a2e;
    transition: transform 0.3s ease;
    user-select: none;
}

.company-content {
    transition: max-height 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
}

.company-content.collapsed {
    max-height: 0;
    opacity: 0;
}

.company-content.expanded {
    max-height: 2000px;
    opacity: 1;
}

.collapse-indicator.expanded {
    transform: rotate(180deg);
}

.company-period {
    display: none;
}

.year-section {
    margin-bottom: 2rem;
}

.year-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.year-badge {
    background: #1a3a2e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.year-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-left: 4rem;
}

.current-focus {
    background: linear-gradient(135deg, #1a3a2e 0%, #2d5a45 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.current-focus h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.current-focus p {
    font-size: 1.1rem;
    opacity: 0.9;
}